DB::table('booking_restaurants')
->join('restaurants', 'booking_restaurants.id_restaurant', '=', 'restaurants.id')
->get();
->select(["booking_restaurants.type", "restaurants.type as restaurants_type"])