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 developer gate
Secure your selected route by using a middleware with static password for developers only
Screenshots
Installation
composer require tomatophp/filament-developer-gate
finally reigster the plugin on /app/Providers/Filament/AdminPanelProvider.php
$panel->plugin(\TomatoPHP\FilamentDeveloperGate\FilamentDeveloperGatePlugin::make())
Usage
to secure selected resource or page you can use this trait
use TomatoPHP\FilamentDeveloperGate\Traits\InteractWithDeveloperGate;
or you can use the middleware direct on your routes like this
Route::middleware([\TomatoPHP\FilamentDeveloperGate\Http\Middleware\DeveloperGateMiddleware::class])->group(function () {
Route::get('/dashboard', function () {
return view('dashboard');
})->name('dashboard');
});
you can add a logout action button to your page or resource by using this trait
use TomatoPHP\FilamentDeveloperGate\Traits\DeveloperGateLogoutAction;
Publish Assets
you can publish config file by use this command
php artisan vendor:publish --tag="filament-developer-gate-config"
you can publish views file by use this command
php artisan vendor:publish --tag="filament-developer-gate-views"
you can publish languages file by use this command
php artisan vendor:publish --tag="filament-developer-gate-lang"
you can publish migrations file by use this command
php artisan vendor:publish --tag="filament-developer-gate-migrations"
Other Filament Packages
Checkout our Awesome TomatoPHP