Console Helpers
Accounts Builder
Alerts Sender
Resource API Generator
Artisan Command Runner
Blog Template
Bookmarks Menu
File Browser
CMS Builder
Developer Gate
Discord Notifications Integration
Documents Editor
E-Commerce Builder
Firebase Notifications Integration
Helper Classes Generator
Icons Picker & Provider
Invoices Manager
GitHub Issues Manager
Language Switcher
Locations Seeder
User Logger
Media Manager
Menu Generator
Sticky Notes
Payment Manager
Plugins Manager & Generator
Point of Sale
Progressive Web App Integration
SEO Manager
Settings Hub
Simple Theme
Social Media Manager
Subscriptions
Tenancy Multi-database
Translation Component
Translations Manager
Google Translations
Translations GPT
Twilio Whatsapp Notifications Integrations
Types Manager
User Manager
Wallets Manager
Wallet Withdrawals
Laravel Package Generator
Filament logger
Log all user activity to file or log driver and preview it on your FilamentPHP panel
Screenshots
Installation
composer require tomatophp/filament-logger
after install your package please run this command
php artisan filament-logger:install
finally register the plugin on /app/Providers/Filament/AdminPanelProvider.php
->plugin(\TomatoPHP\FilamentLogger\FilamentLoggerPlugin::make())
after install please publish the config file by using this command
php artisan vendor:publish --tag="filament-logger-config"
on your filament-logger.php
config file please add the guard of user or middleware you went to track
'guards' => [
'web',
'auth:accounts'
],
to track your panel
'guards' => [
'web',
'panel:admin'
],
where admin
is the id of the panel.
Using
you can add a custom log from anywhere in your code by using this code
use TomatoPHP\FilamentLogger\Facades\FilamentLogger;
FilamentLogger::log(message:'Your message here', level:'info');
Publish Assets
you can publish config file by use this command
php artisan vendor:publish --tag="filament-logger-config"
you can publish languages file by use this command
php artisan vendor:publish --tag="filament-logger-lang"
you can publish migrations file by use this command
php artisan vendor:publish --tag="filament-logger-migrations"
Other Filament Packages
Checkout our Awesome TomatoPHP