Files
click-erp/app/Models/StaffMember.php
2026-02-05 08:38:07 +00:00

25 lines
600 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Notifications\Notifiable;
class StaffMember extends Model
{
use Notifiable;
protected $guarded = array('id');
public $table = "staff_members";
public function department_info(){
return $this->hasOne('App\Models\Department', 'id', 'department_id');
}
public function created_by_info(){
return $this->hasOne('App\Models\Account', 'id', 'created_by');
}
public function modified_by_info(){
return $this->hasOne('App\Models\Account', 'id', 'modified_by');
}
}