Adicione variáveis à linha na notificação do Laravel
public function toMail($notifiable)
{
$username = $this->username;
return (new MailMessage)
->greeting('Hello, '.$username)
->line('You received a brand new msg!')
->action('View msg', url('/'.$username));
}
NachooCh