filament-clear-cache icon indicating copy to clipboard operation
filament-clear-cache copied to clipboard

after install i cant see the clear button

Open agaitan026 opened this issue 1 year ago • 1 comments

i followed docs but cant see clear cache button

use CmsMulti\FilamentClearCache\FilamentClearCachePlugin;

            ->plugin(
                \TomatoPHP\FilamentLogger\FilamentLoggerPlugin::make()
                ,FilamentClearCachePlugin::make())

what im missing?

agaitan026 avatar Sep 22 '24 16:09 agaitan026

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. Screenshot 2024-09-26 at 15 36 39

howdu avatar Sep 26 '24 14:09 howdu

@agaitan026

I suppose you should fix from:

->plugin(
                \TomatoPHP\FilamentLogger\FilamentLoggerPlugin::make()
                ,FilamentClearCachePlugin::make())

to

->plugins([
                \TomatoPHP\FilamentLogger\FilamentLoggerPlugin::make(),
                FilamentClearCachePlugin::make()
                ])

davideprevosto avatar Oct 26 '24 19:10 davideprevosto