I found solution:
$ids = $data->cities->lists('id');
$users = User::with('city')
->leftJoin('city_user', 'city_user.user_id', '=', 'users.id')
->whereIn('city_user.city_id', $ids)
->paginate(config('cfg.onpage'));
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community