Ajouter des variables à la ligne dans la notification 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