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