Miguel Urtado
Creating a new option in a modal not work with tenancy - createOptionForm
The team_id column is null.
https://filamentphp.com/docs/3.x/forms/fields/select#creating-a-new-option-in-a-modal
4 replies
Change de delete process in Tables\Actions\DeleteBulkAction Hooks
It's possible get records before DeleteBulkAction hook?
->bulkActions([
Tables\Actions\DeleteBulkAction::make()
->before(function (MyModel $record) {
dd($record);
}),
]);
In edit record page this work:
protected function getActions(): array
{
return [
Actions\DeleteAction::make()
->before(function (MyModel $record) {
dd($record);
}),
];
}
3 replies