芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/erp.digitalhubbd.com/app/Models/Project.php
'integer', 'company_id' => 'integer', ]; public function client() { return $this->hasOne('App\Models\Client', 'id', 'client_id'); } public function company() { return $this->hasOne('App\Models\Company', 'id', 'company_id'); } public function assignedEmployees() { return $this->belongsToMany('App\Models\Employee'); } }