BKF Dev
import modal description
Copy Past :
\Filament\Forms\Components\Actions::make([
Action::make('get_template')
->icon('tabler-file')
->label(__('Download Template Xlsx / Csv File'))
->outlined()
->link()
->color('success')
->action(function () {
return Response::download(public_path('template.xlsx'), 'template.xlsx', ['Content-Type: application/vnd.ms-excel']);
}),
]),
3 replies
hasCombinedRelationManagerTabsWithContent bug
Finally I got the problem -.-' !
I've created a custom form component using custom livewire page, and called it using :
Livewire::make(MyComponent::class)
So I decided to create a custom form field and everything works fine 🙂
Thanks all 🙂11 replies
HELP: It requires double click to trigger the table actions inside the Action Modal
Oops ! I found the issue, in my case I'm using ->query to get data, so it doesn't work even when adding lazy loading, so I tried the ->relationship query so it works fine 🙂
10 replies