From c7a57cb115ef0072244c065e1a877ec79f4ca261 Mon Sep 17 00:00:00 2001 From: sayliraut Date: Tue, 18 Jun 2024 17:54:33 +0530 Subject: [PATCH] changes --- app/Services/APIs/CustomerAPIs/CMSApiServices.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Services/APIs/CustomerAPIs/CMSApiServices.php b/app/Services/APIs/CustomerAPIs/CMSApiServices.php index 4b71240..fc2058e 100644 --- a/app/Services/APIs/CustomerAPIs/CMSApiServices.php +++ b/app/Services/APIs/CustomerAPIs/CMSApiServices.php @@ -123,6 +123,11 @@ class CMSApiServices ->get() ->toArray(); + $data['restaurant'] = Termsandconditions::select('id', 'message') + ->where('category_xid', '2') + ->get() + ->toArray(); + return $data; } catch (Exception $ex) { Log::error('Terms and condition Get service failed : ' . $ex->getMessage());