Uploaded image not deleted on delete
When deleting a record the image in storage isnt deleted.
I've tried something like this but record is protected
I've tried something like this but record is protected
->actions([
Tables\Actions\EditAction::make(),
Tables\Actions\DeleteAction::make()
->after(function ($action){
unlink(storage_path('app/public/'. $action->record->image_url));
}),
])