dbfdg belongsToMany('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; } }