Files
click-erp/app/Models/OfficeLocation.php
2025-11-23 14:40:32 +00:00

19 lines
484 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class OfficeLocation extends Model
{
protected $guarded = array('id');
public function created_by_info(){
return $this->hasOne('App\Models\SystemUser', 'id', 'user_id');
}
public function country_manager_info(){
// return $this->hasOne('App\Models\StaffMember', 'id', 'country_manager_id');
return $this->hasOne('App\Models\SystemUser', 'id', 'country_manager_id');
}
}