Bookmarks Menu
Add bookmarks and tags to your resources records and access theme form your sidebar
Author:
Fady Mondy
Documentation

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

#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
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
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
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
Checkout our Awesome TomatoPHP
The author
Add bookmarks and tags to your resources records and access theme form your sidebar
From the same author
Discord Notifications
Send notifications to a Discord channel using the native FilamentPHP Notification Facade class
Author:
Fady Mondy
Tenancy Multi-database
Tenancy multi-database integration for FilamentPHP
Author:
Fady Mondy
Menu Generator
Menu view generator using view component
Author:
Fady Mondy
Translations Manager
Manage your translation with DB and cache, you can scan an collect translation strings like `trans()` and `__()`, and translate them using UI
Author:
Fady Mondy
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Data Lens
Advanced Data Visualization for Laravel Filament - a premium reporting solution enabling custom column creation, sophisticated filtering, and enterprise-grade data insights within admin panels.
Padmission
Advanced Tables (formerly Filter Sets)
Supercharge your tables with powerful features like user-customizable views, quick filters, multi-column sorting, advanced table searching, convenient view management, and more. Compatible with Resource Panel Tables, Relation Managers, Table Widgets, and Table Builder!
Kenneth Sese