data = date('d/m/Y \à\s H:i\h', strtotime(now())); $url = "/projeto/planosTrabalho/".$id; $this->url = url($url); $this->editalNome = $eventoTitulo; $this->trabalhoNome = $trabalhoTitulo; $this->user = $usuario; $this->tipo = $tipoRelatorio; $this->subject ="Recebimento de Relatório {$this->tipo}"; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['mail']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->subject($this->subject) ->greeting("Olá, {$this->user->name}!") ->action('Acessar Relatórios', $this->url ) ->line("O projeto {$this->trabalhoNome} pertencente ao edital {$this->editalNome} do Submeta, registrou um novo envio de Relatório {$this->tipo} em {$this->data}.") ->line('Obrigado por usar o nosso sistema.') ->markdown('vendor.notifications.email'); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ // ]; } }