modified assests

This commit is contained in:
2026-06-15 11:25:16 +07:00
parent 3f115866d9
commit e96d58dcb4
1218 changed files with 1162 additions and 339502 deletions

View File

@@ -18,10 +18,10 @@ class Role extends BaseModel
parent::boot();
}
protected $fillable = ['name_en', 'lab_id'];
protected $fillable = ['name_en', 'organization_id'];
public function lab(){
return $this->belongsTo(Laboratory::class, 'lab_id');
return $this->belongsTo(Organization::class, 'organization_id');
}
}