filament-clear-cache
filament-clear-cache copied to clipboard
after install i cant see the clear button
i followed docs but cant see clear cache button
use CmsMulti\FilamentClearCache\FilamentClearCachePlugin;
->plugin(
\TomatoPHP\FilamentLogger\FilamentLoggerPlugin::make()
,FilamentClearCachePlugin::make())
what im missing?
That's correct. Have you made any changes to the config?
If the hook is working correctly it will be rendering the livewire component.
Try to debug this file by removing the visible checks and see if that's the issue.
@agaitan026
I suppose you should fix from:
->plugin(
\TomatoPHP\FilamentLogger\FilamentLoggerPlugin::make()
,FilamentClearCachePlugin::make())
to
->plugins([
\TomatoPHP\FilamentLogger\FilamentLoggerPlugin::make(),
FilamentClearCachePlugin::make()
])