From 7bb7be404afa0ff8a8780f1ec822e84e153bc91e Mon Sep 17 00:00:00 2001 From: sayliraut Date: Thu, 13 Jun 2024 15:09:21 +0530 Subject: [PATCH] restaurant app filter --- .../restaurants_users.blade.php | 657 +++++++++--------- 1 file changed, 345 insertions(+), 312 deletions(-) diff --git a/resources/views/Admin/pages/manage_users/restaurants_app/restaurants_users.blade.php b/resources/views/Admin/pages/manage_users/restaurants_app/restaurants_users.blade.php index 95b94e5..b36e210 100644 --- a/resources/views/Admin/pages/manage_users/restaurants_app/restaurants_users.blade.php +++ b/resources/views/Admin/pages/manage_users/restaurants_app/restaurants_users.blade.php @@ -1,371 +1,404 @@ @extends('Admin.layouts.master') @section('content') -@php -$currentPage = 'manage-restaurant_app'; -@endphp + @php + $currentPage = 'manage-restaurant_app'; + @endphp - + .btn { + padding: 6px 12px; + /* Adjust padding as needed */ + font-size: 14px; + /* Adjust font size as needed */ + } + -
-
-
-
-
-
-
Restaurants Users
+
+
+
+
+
+
+
Restaurants Users
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + @foreach ($restaurant_users as $restaurant_user) + + + + + + + + + + + + @endforeach + +
Sr noRestaurant NameRestaurant IDEmail IdDate OnboardedLocationApprove/DisapproveStatusAction
{{ $loop->iteration }} + @foreach ($restaurant_user->restaurants as $restaurant) + {{ $restaurant->name }} + @endforeach + {{ $restaurant->restaurant_id }}{{ $restaurant_user->email_address }}{{ $restaurant_user->created_at->format('d/m/Y') }}{{ $restaurant_user->state ? $restaurant_user->state->name : 'No state assigned' }} + + + + +
+ + +
+
+ View + Edit + +
-
-
-
-
- - - - - - - - - - - - - - - @foreach ($restaurant_users as $restaurant_user) - - - - - - - - - - - - @endforeach - -
Sr noResturant NameResturant IDEmail IdDate OnboardedLocationApprove/DisapproveStatusAction
{{ $loop->iteration }} - @foreach ($restaurant_user->restaurants as $restaurant) - {{ $restaurant->name }} - @endforeach - {{ $restaurant->restaurant_id }}{{ $restaurant_user->email_address }}{{ $restaurant_user->created_at->format('d/m/Y') }}{{ $restaurant_user->state ? $restaurant_user->state->name : 'No state assigned' }} - - - -
- - -
-
- View - Edit - -
-
-
- - -