| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function handle(CustomerContactDeletedEvent $event) |
||
| 15 | { |
||
| 16 | Log::channel('cust')->info('Customer Contact ID '.$event->cont->cont_id.' removed for Customer '.$event->cust->name.' by '.Auth::user()->username.'. Details - ', [ |
||
| 17 | 'Contact Name' => $event->cont->name, |
||
| 18 | 'Contact ID' => $event->cont->cont_id, |
||
| 19 | 'Customer ID' => $event->cust->cust_id, |
||
| 20 | ]); |
||
| 23 |