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