Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace Anomaly\UsersModule\User\Notification; |
||
25 | public function toMail($notifiable) |
||
26 | { |
||
27 | $url = url('/test'); |
||
28 | |||
29 | return (new MailMessage) |
||
30 | ->line('One of your invoices has been paid!') |
||
31 | ->action('View Invoice', $url) |
||
32 | ->line('Thank you for using our application!'); |
||
33 | } |
||
34 | } |
||
35 |