set subject for mail inlaravel

Solutions on MaxInterview for set subject for mail inlaravel by the best coders in the world

showing results for - "set subject for mail inlaravel"
Alex
20 Jan 2018
1 return (new MailMessage)
2                ->subject('your seubject')
3                ->greeting('Hello')
4                ->line('intro line.')
5                ->action('action url', url(''))
6                ->line('Thank you for using our application!');