@extends('layouts.app') @section('content')

{{trans('lang.deliveryslot_plural')}}|{{trans('lang.deliveryslot_desc')}}

@include('flash::message')
@if(count($deliveryslot)>0) @foreach ($deliveryslot as $key=>$deliveryslot1) @endforeach @else @endif
ID Country Store Name Added / Modified date Action
{{ $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 }}

No record found!
{{$deliveryslot->links()}}
@endsection