->modalFooterActions(function($record){
// child actions
return [
Action::make('send_request')
->label(__('actions')['user-new-request-label'])
->modalSubmitAction()
->form(function($livewire, Action $action) use ($record){
$requestData = $livewire->mountedTableActionsData[0];
return [
Placeholder::make('notes')
->label('Notes')
->content(function(){
return "notes";
})
];
})
->modalFooterActions(function($record){
// child actions
return [
Action::make('send_request')
->label(__('actions')['user-new-request-label'])
->modalSubmitAction()
->form(function($livewire, Action $action) use ($record){
$requestData = $livewire->mountedTableActionsData[0];
return [
Placeholder::make('notes')
->label('Notes')
->content(function(){
return "notes";
})
];
})