@include('flash::message')
ID |
Country |
Store Name |
Location Name |
Status |
Added / Modified date |
Action |
@if(count($locations)>0)
@foreach ($locations as $key=>$loc)
{{ $loc->id }} |
@if(count($country)>0)
@foreach ($country as $key=>$country1)
@if($loc->country_code==$country1['country_code'])
{{$country1['country_name']}}
@endif
@endforeach
@endif
|
@if(count($store)>0)
@foreach ($store as $key=>$store1)
@if(in_array($store1->group_id, $multiple_store_name_get))
@endif
@endforeach
@endif
|
{{ $loc->name }} |
@if($loc->status=="1")
Active
@else
InActive
@endif
|
{{ $loc->created }}
|
|
@endforeach
@else
No record found! |
@endif
{{$locations->links()}}
@endsection