label(__('filament.actions.video_script.delete.name')); $this->authorize('delete', VideoScript::class); } /** * Get the underlying storage action. * * @param VideoScript $script * @param array $fields * @return DeleteScript */ protected function storageAction(BaseModel $script, array $fields): DeleteScript { return new DeleteScript($script); } }