| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function handle(CustomerNoteDeletedEvent $event) |
||
| 15 | { |
||
| 16 | Log::channel('cust')->info('Customer note has been deleted by '.Auth::user()->username.' for Customer '.$event->cust->name.'. Details, ', [ |
||
| 17 | 'cust_id' => $event->cust->cust_id, |
||
| 18 | 'note_id' => $event->note->note_id, |
||
| 19 | 'subject' => $event->note->subject, |
||
| 20 | ]); |
||
| 23 |