/
home
/
sditechnicalteam
/
public_html
/
app
/
Observers
/
File Upload :
llllll
Current File: /home/sditechnicalteam/public_html/app/Observers/ClientNoteObserver.php
<?php namespace App\Observers; use App\Models\ClientNote; class ClientNoteObserver { /** * @param ClientNote $clientNote */ public function saving(ClientNote $clientNote) { if (user()) { $clientNote->last_updated_by = user()->id; } } public function creating(ClientNote $clientNote) { if (user()) { $clientNote->added_by = user()->id; } if (company()) { $clientNote->company_id = company()->id; } } }
Copyright ©2k19 -
Hexid
|
Tex7ure