post = $post; } /** * Get the notification's delivery channels. * * @return array */ public function via(object $notifiable): array { return ['telegram']; } public function toTelegram($notifiable) { return TelegramMessage::create() ->content("*Incomplete Post*:\nPost ID: ".$this->post->id."\nPost Name: ".$this->post->title); } }