Merge pull request #350 from WDI-Ideas/sayli

Sayli
This commit is contained in:
Sayli Raut
2024-07-17 17:48:47 +05:30
committed by GitHub

View File

@@ -164,7 +164,7 @@ class RestaurantApiServices
->toArray();
// Fetch the restaurant details
$restaurants = ManageRestaurant::where('is_active', '1')
$restaurants = ManageRestaurant::with('closedRestaurant')->where('is_active', '1')
->whereIn('id', $customerFavouriteRestaurants)
->get();