*/ public function via(object $notifiable): array { return ['mail']; } public function toMail(object $notifiable): MailMessage { return (new MailMessage) ->subject('Nouveau participant sur '.$this->hunt->title) ->greeting('Bonjour '.$notifiable->username) ->line($this->participant->username.' participe maintenant à votre chasse "'.$this->hunt->title.'".') ->line('Vous pouvez suivre les participants depuis votre espace organisateur.'); } }