saasykit / filament-oops
Never accidentally edit your Filament production panel again! Filament Oops displays a clear 'Production' warning, helping you avoid costly mistakes and keeping your development safe.
Fund package maintenance!
saasykit
Requires
- php: ^8.1
- filament/filament: ^3.0
- spatie/laravel-package-tools: ^1.15.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- pestphp/pest: ^2.1
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
README
Filament Oops displays a clear 'Production' warning on your production Filament panel, helping you avoid costly mistakes and keeping your development safe.
Filament Oops uses the APP_ENV
environment variable to determine the environment your Filament panel is running in. If you're running your Filament panel in production, Filament Oops will display a clear 'Production' warning on your panel.
You can also define custom environment names and colors if you want to customize the warning message for your specific environments.
Installation
You can install the package via composer:
composer require saasykit/filament-oops
Optionally, you can publish the views using (in case you want to customize the views):
php artisan vendor:publish --tag="filament-oops-views"
Usage
All you need to do is add the FilamentOopsPlugin
to your Filament
plugin list in your FilamentServiceProvider
(usually located in app/Providers/Filament/AdminPanelProvider.php
):
class AdminPanelProvider extends PanelProvider { public function panel(Panel $panel): Panel { return $panel // some other configurations ->plugins([ FilamentOopsPlugin::make(), // Add this line ]); } }
Customization
You can customize the environment names and colors by using the addEnvironment
method on the FilamentOopsPlugin
:
class AdminPanelProvider extends PanelProvider { public function panel(Panel $panel): Panel { return $panel // some other configurations ->plugins([ FilamentOopsPlugin::make()->addEnvironment('local', 'Local', '#008000'), // Add this line ]); } }
Psst: Wanna build a Laravel SaaS application quickly?
If you want to build a SaaS app quickly, support us by checking out SaaSykit. SaaSykit is a SaaS starter kit (boilerplate) that comes packed with all components required to run a modern SaaS software. Available in both multi-tenant and single-tenant versions.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.