Insert import and export button here!
Hey guys, is there a hook position that allows me to insert 2 import and export buttons next to the create button? or failing that next to the table search button!
I have added the import and export buttons in another module, but I stay above the search and to my taste it looks a bit ugly, I would like to see the option to place them next to create or search...
2 Replies
@TranceCode If I'm understanding you correctly, you can try the getHeaderActions() method in your ListRecords class. I put my export/import in an ActionGroup to the right of the create button, but YMMV.
protected function getHeaderActions(): array
{
return [
Actions\CreateAction::make(),
Actions\ActionGroup::make([
ExportAction::make()
Thank you bro, i will check this option!