Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
58 | public function toArray($notifiable) |
||
59 | { |
||
60 | $subject = TechTips::find($this->tipID)->subject; |
||
61 | |||
62 | return [ |
||
63 | // |
||
64 | 'type' => 'warning', |
||
65 | 'message' => $this->user.' commented on your Tech Tip', |
||
66 | 'link' => url(route( |
||
67 | 'tip.details', |
||
68 | [ |
||
69 | 'id' => $this->tipID, |
||
70 | 'name' => urlencode($subject) |
||
71 | ] |
||
76 |