63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Observers;
 | 
						|
 | 
						|
use App\Models\Actionlog;
 | 
						|
use App\Models\License;
 | 
						|
use Auth;
 | 
						|
 | 
						|
class LicenseObserver
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Listen to the User created event.
 | 
						|
     *
 | 
						|
     * @param  License  $license
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function updated(License $license)
 | 
						|
    {
 | 
						|
        $logAction = new Actionlog();
 | 
						|
        $logAction->item_type = License::class;
 | 
						|
        $logAction->item_id = $license->id;
 | 
						|
        $logAction->created_at = date('Y-m-d H:i:s');
 | 
						|
        $logAction->user_id = Auth::id();
 | 
						|
        $logAction->logaction('update');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Listen to the License created event when
 | 
						|
     * a new license is created.
 | 
						|
     *
 | 
						|
     * @param  License  $license
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function created(License $license)
 | 
						|
    {
 | 
						|
        $logAction = new Actionlog();
 | 
						|
        $logAction->item_type = License::class;
 | 
						|
        $logAction->item_id = $license->id;
 | 
						|
        $logAction->created_at = date('Y-m-d H:i:s');
 | 
						|
        $logAction->user_id = Auth::id();
 | 
						|
        if($license->imported) {
 | 
						|
            $logAction->setActionSource('importer');
 | 
						|
        }
 | 
						|
        $logAction->logaction('create');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Listen to the License deleting event.
 | 
						|
     *
 | 
						|
     * @param  License  $license
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function deleting(License $license)
 | 
						|
    {
 | 
						|
        $logAction = new Actionlog();
 | 
						|
        $logAction->item_type = License::class;
 | 
						|
        $logAction->item_id = $license->id;
 | 
						|
        $logAction->created_at = date('Y-m-d H:i:s');
 | 
						|
        $logAction->user_id = Auth::id();
 | 
						|
        $logAction->logaction('delete');
 | 
						|
    }
 | 
						|
}
 |