binarybuilds/filament-cache-manager
Cache::forget(), Cache::flush()), making it agnostic to underlying cache drivers (Redis, Memcached, file, etc.). Aligns with Laravel’s built-in caching mechanisms.php artisan cache:clear). Complements existing Laravel tools rather than replacing them.Cache::store('custom')->flush()), the plugin’s UI may not cover all scenarios. Requires validation of cache usage patterns.artisan usage in CI/CD or deployment scripts.laravel-debugbar or custom artisan commands may suffice.composer require binarybuilds/filament-cache-manager
^1.0) to avoid breaking changes.app/Providers/Filament/AdminPanelProvider.php:
$panel->plugin(FilamentCacheManagerPlugin::make());
composer.json constraints or fork the plugin.filament-spatie-laravel-medialibrary).Cache::tags(), Cache::remember())..env.Cache::flush() via queue).| Scenario | Impact | Mitigation |
|---|---|---|
| Filament plugin fails | UI broken, but CLI still works | Fallback to php artisan cache:clear |
| Cache driver misconfig | Clears fail silently | Add error boundaries/logging |
| Permission misconfig | Unauthorized cache clears | Audit Filament policies |
| Large cache flush | Timeouts or lock contention | Implement async clears |
How can I help you explore Laravel packages today?