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(CustomerFileAddedEvent $event) |
||
15 | { |
||
16 | Log::channel('cust')->info('New file has been added for '.$event->cust->name.' by '.Auth::user()->username.'. Details - ', [ |
||
17 | 'cust_id' => $event->cust->cust_id, |
||
18 | 'file_id' => $event->file->file_id, |
||
19 | 'file_name' => $event->file->name, |
||
20 | ]); |
||
23 |