*/ class VideoScriptDeleted extends WikiDeletedEvent { /** * Create a new event instance. * * @param VideoScript $script */ public function __construct(VideoScript $script) { parent::__construct($script); } /** * Get the model that has fired this event. * * @return VideoScript */ public function getModel(): VideoScript { return $this->model; } /** * Get the description for the Discord message payload. * * @return string */ protected function getDiscordMessageDescription(): string { return "Script '**{$this->getModel()->getName()}**' has been deleted."; } /** * Get the message for the filament notification. * * @return string */ protected function getNotificationMessage(): string { return "Script '**{$this->getModel()->getName()}**' has been deleted. It will be automatically pruned in one week. Please review."; } /** * Get the URL for the Filament notification. * * @return string */ protected function getFilamentNotificationUrl(): string { $uriKey = VideoScriptFilament::getRecordSlug(); return "/resources/$uriKey/{$this->getModel()->getKey()}"; } }