File "DepartmentObserver.php"
Full Path: /home/isoftco/public_html/hrm/app/Observers/DepartmentObserver.php
File size: 318 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Observers;
use App\Models\Admin;
use App\Models\Department;
use App\Models\EmailTemplate;
class DepartmentObserver
{
public function creating(Department $model)
{
if (admin() && \admin()->type == 'admin') {
$model->company_id = admin()->company_id;
}
}
}