My code is like this :
public function toMail($notifiable)
{
return (new MailMessage)
->subject('You have new follower')
->greeting('Hello!')
->line('Welcome to my application')
->line('Thank you');
}
See I marked in blue. I want to custom that.
I read on https://laravel.com/docs/5.3/notifications#mail-notifications, but I did not find it
How do I custom it?