'json', ]; const CATEGORY = [ 10 => 'Vue', 11 => 'Laravel', ]; public function client() { return $this->belongsTo(Client::class, 'client_id'); } public function projectCategory() { return $this->belongsTo(ProjectCategory::class, 'project_category_id'); } public function members() { return $this->belongsToJson(Employee::class, 'members_id->id'); } }