| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function handle(CustomerIdChangedEvent $event) |
||
| 17 | { |
||
| 18 | Log::channel('cust')->notice('Customer ID changed for '.$event->cust->name.' by '.Auth::user()->username.'. Details - ', [ |
||
| 19 | 'name' => $event->cust->name, |
||
| 20 | 'old_id' => $event->oldId, |
||
| 21 | 'new_id' => $event->cust->cust_id, |
||
| 22 | ]); |
||
| 25 |