FilamentF
Filament15mo ago
wazkaz

Button blade component customization

I am using the button blade component and I noticed that a loading indicator appearing after click on the button. Is there a way to remove that loading indicator by passing example an attribute, or any other ways?
<?php
<x-filament::button wire:click="openNewUserModal">
    New user
</x-filament::button>
Solution
Yes

<x-filament::button :loading-indicator="false" wire:click="openNewUserModal">
Was this page helpful?