@extends('header.header') @section('content')
Restaurants

@if(Auth::user()->role == "All") @endif

Restaurants table

@foreach($data['data'] as $Restaurant) @if(!empty(Auth::user()->role) && isset(Auth::user()->role) && Auth::user()->role == 4) @if(Auth::user()->StoreID == $Restaurant['branch_id']) @include('RestaurantsTable') @break @endif @else @include('RestaurantsTable') @endif @endforeach
Restaurants image Restaurants name Status Address Tax MobileNumber Delivery Free action
@endsection