PHPackages                             tomatophp/filament-bookmarks-menu - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. tomatophp/filament-bookmarks-menu

ActiveLibrary[Templating &amp; Views](/categories/templating)

tomatophp/filament-bookmarks-menu
=================================

Add bookmarks and tags to your resources records and access theme form your sidebar

v1.0.3(1y ago)77722[1 issues](https://github.com/tomatophp/filament-bookmarks-menu/issues)MITPHPPHP ^8.1

Since Sep 7Pushed 1y ago1 watchersCompare

[ Source](https://github.com/tomatophp/filament-bookmarks-menu)[ Packagist](https://packagist.org/packages/tomatophp/filament-bookmarks-menu)[ GitHub Sponsors](https://github.com/3x1io)[ RSS](/packages/tomatophp-filament-bookmarks-menu/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (4)Dependencies (3)Versions (5)Used By (0)

[![Screenshot](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/3x1io-tomato-bookmarks-menu.jpg)](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/3x1io-tomato-bookmarks-menu.jpg)

Filament Bookmarks Menu
=======================

[](#filament-bookmarks-menu)

[![Latest Stable Version](https://camo.githubusercontent.com/d0ffafa2323e9969f7c1c9decb58e51bf3bc23c021b1cf99fb5024496bcdccae/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d626f6f6b6d61726b732d6d656e752f76657273696f6e2e737667)](https://packagist.org/packages/tomatophp/filament-bookmarks-menu)[![License](https://camo.githubusercontent.com/38d42932a2e6b9a6c9b8444c105408351fff58732c2c3b36db68860144717721/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d626f6f6b6d61726b732d6d656e752f6c6963656e73652e737667)](https://packagist.org/packages/tomatophp/filament-bookmarks-menu)[![Downloads](https://camo.githubusercontent.com/08c8ce644bb1a7e33261eedcda4232c172b94f6d7a14f960cbbb7e9cd1c7ad78/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d626f6f6b6d61726b732d6d656e752f642f746f74616c2e737667)](https://packagist.org/packages/tomatophp/filament-bookmarks-menu)

Add bookmarks and tags to your resources records and access theme form your sidebar

Screenshots
-----------

[](#screenshots)

[![Bookmark Menu](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/bookmark-menu.png)](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/bookmark-menu.png)[![Create Modal](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/create-modal.png)](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/create-modal.png)[![Add Bookmark](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/add-bookmark.png)](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/add-bookmark.png)[![Remove Bookmark](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/remove-bookmark.png)](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/remove-bookmark.png)[![Bookmark Page](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/bookmark-page.png)](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/bookmark-page.png)[![Bookmark Actions](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/bookmark-actions.png)](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/bookmark-actions.png)[![Bookmark Edit](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/bookmark-edit.png)](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/bookmark-edit.png)[![Bookmark Bulk Actions](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/bulk-actions.png)](https://raw.githubusercontent.com/tomatophp/filament-bookmarks-menu/master/arts/bulk-actions.png)

Installation
------------

[](#installation)

```
composer require tomatophp/filament-bookmarks-menu
```

after install your package please run this command

```
php artisan filament-bookmarks-menu:install
```

finally register the plugin on `/app/Providers/Filament/AdminPanelProvider.php`

```
->plugin(\TomatoPHP\FilamentBookmarksMenu\FilamentBookmarksMenuPlugin::make())
```

Usage
-----

[](#usage)

you can add bookmark action to your page like this

```
use TomatoPHP\FilamentBookmarksMenu\Filament\Actions\BookmarkAction;

protected function getHeaderActions(): array
{
    return [
        BookmarkAction::make()
    ];
}
```

or to your table like this

```
use TomatoPHP\FilamentBookmarksMenu\Filament\Tables\BookmarkAction;

public function table(Table $table): void
{
    $table->actions([
        BookmarkAction::make()
    ]);
}
```

or to your table bulk actions like this

```
use TomatoPHP\FilamentBookmarksMenu\Filament\Tables\BookmarkBulkAction;
use TomatoPHP\FilamentBookmarksMenu\Filament\Tables\BookmarkBulkClearAction;

public function table(Table $table): void
{
    $table->bulkActions([
        Tables\Actions\BulkActionGroup::make([
            BookmarkBulkAction::make(),
            BookmarkBulkClearAction::make()
        ]),
    ]);
}
```

Create Custom Bookmark Type
---------------------------

[](#create-custom-bookmark-type)

you can create custom bookmark type by use our Facade `TomatoPHP\FilamentBookmarksMenu\Facades\FilamentBookmarksMenu` register method like this

```
use TomatoPHP\FilamentBookmarksMenu\Facades\FilamentBookmarksMenu;
use TomatoPHP\FilamentBookmarksMenu\Services\Contracts\BookmarkType;

public function boot()
{
    FilamentBookmarksMenu::register([
        BookmarkType::make('hashtags')->label('Hashtags')->panel('employee'),
        BookmarkType::make('folder')->label('Folders'),
    ]);
}
```

to make label translatable you can use your path direct on label like this `->label('filament.bookmarks-menu::labels.hashtags')`

Publish Assets
--------------

[](#publish-assets)

you can publish config file by use this command

```
php artisan vendor:publish --tag="filament-bookmarks-menu-config"
```

you can publish views file by use this command

```
php artisan vendor:publish --tag="filament-bookmarks-menu-views"
```

you can publish languages file by use this command

```
php artisan vendor:publish --tag="filament-bookmarks-menu-lang"
```

you can publish migrations file by use this command

```
php artisan vendor:publish --tag="filament-bookmarks-menu-migrations"
```

Other Filament Packages
-----------------------

[](#other-filament-packages)

Checkout our [Awesome TomatoPHP](https://github.com/tomatophp/awesome)

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance31

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~3 days

Total

4

Last Release

655d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2147eb2fca7ab5f0124d0fafd88ba2d2a5dfa3a0036fb8872d1084b7cba29366?d=identicon)[fadymondy](/maintainers/fadymondy)

---

Top Contributors

[![fadymondy](https://avatars.githubusercontent.com/u/11937812?v=4)](https://github.com/fadymondy "fadymondy (7 commits)")

---

Tags

phplaraveltemplate

### Embed Badge

![Health badge](/badges/tomatophp-filament-bookmarks-menu/health.svg)

```
[![Health](https://phpackages.com/badges/tomatophp-filament-bookmarks-menu/health.svg)](https://phpackages.com/packages/tomatophp-filament-bookmarks-menu)
```

###  Alternatives

[tomatophp/filament-plugins

Manage your modules as a plugin system with plugin generator

634.9k2](/packages/tomatophp-filament-plugins)[tomatophp/filament-wallet

Account Balance / Wallets Manager For FilamentPHP and Filament Account Builder

3731.2k2](/packages/tomatophp-filament-wallet)[tomatophp/filament-docs

Manage your documents and contracts all in one place with template builder

452.7k](/packages/tomatophp-filament-docs)[tomatophp/filament-subscriptions

Manage subscriptions and feature access with customizable plans in FilamentPHP

649.6k](/packages/tomatophp-filament-subscriptions)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
