JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3RbrbelongsToMany('App\Models\Employee', 'employees', '', 'user_id'); } public function users($users) { $userIds = explode(',', $users); // Use eager loading to fetch users for the given employee IDs $users = User::whereIn('id', $userIds) ->with('employee') ->get(); return $users; } }