@include('flash::message')
ID |
Country |
Store Name |
Added / Modified date |
Action |
@if(count($deliveryslot)>0)
@foreach ($deliveryslot as $key=>$deliveryslot1)
{{ $deliveryslot1->id }} |
@if(count($country)>0)
@foreach ($country as $key=>$country1)
@if($deliveryslot1->country_code==$country1['country_code'])
{{$country1['country_name']}}
@endif
@endforeach
@endif
|
@if(count($store)>0)
@foreach ($store as $key=>$store1)
@if($deliveryslot1->store_id==$store1->group_id)
{{$store1->name}}
@endif
@endforeach
@endif
|
{{ $deliveryslot1->created }}
|
|
@endforeach
@else
No record found! |
@endif
{{$deliveryslot->links()}}
@endsection