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

{{trans('lang.locations_plural')}}|{{trans('lang.locations_desc')}}

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

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