@extends('header.header')
@section('content')
| Restaurants image |
Restaurants name |
Status |
Address |
Tax |
MobileNumber |
Delivery Free |
action |
|
@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
@endsection