the export button does not appear in the table #183
Replies: 4 comments 17 replies
-
Did you select any records? |
Beta Was this translation helpful? Give feedback.
-
No, i don't select any record. but in various tutorials on YouTube, bulk action will appear if all data is selected first with checkboxes. Well, the problem is, my checkbox doesn't appear to the left of the name. how to handle it ? |
Beta Was this translation helpful? Give feedback.
-
Maybe I explained it wrong. You can see, there is no checkbox to select the data that I have attached. The question is, how do I bring up the checkbox so that the data can be exported. How ? |
Beta Was this translation helpful? Give feedback.
-
This is my full code for PresenceResource |
Beta Was this translation helpful? Give feedback.
-
`
use pxlrbt\FilamentExcel\Actions\Tables\ExportBulkAction;
public static function form(Form $form): Form
{
return $form
->schema([
Select::make('user_id')
->relationship('user', 'name')
->required(),
]);
}
So, this my code for PresenceResource. i want to take action export data. but, the bulkaction button not show. how to fixed it ? i used laravel filament 3.
Thank
Beta Was this translation helpful? Give feedback.
All reactions