How can I globally change the 'view' action color?
I'd like for it to be 'success' instead of gray. Can I do this globally or do I need to set ->color('primary') on every instance?
3 Replies
in a service provider boot function you can do
use Filament\Actions\ViewAction;
or
use Filament\Tables\Actions\ViewAction;
thanks
We can implment most of the action related property through global config ! Helps to save lot of time !!