| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function toMail($notifiable) |
||
| 30 | { |
||
| 31 | return (new MailMessage) |
||
| 32 | ->line('A new file has been uploaded to the file link - '.$this->details->link_name) |
||
| 33 | ->action('Click to View Link', |
||
| 34 | url(route('links.info', [ |
||
| 35 | 'id' => $this->details->link_id, |
||
| 36 | 'name' => urlencode($this->details->link_name) |
||
| 37 | ]))); |
||
| 53 |