@extends('layouts.admin.master') @section('title','Location') @section('content') @include('layouts.admin.flash.alert')

Manage Location Here you can manage location

{{ Breadcrumbs::render('common',['append' => [['label'=> $getController,'route'=> \Request::route()->getName()]]]) }}

{{ __('List Locations') }}

@if($locations->count() > 0) @php $i = (($locations->currentPage() - 1) * ($locations->perPage()) + 1) @endphp @foreach($locations as $location) @php $i++; @endphp @endforeach @else @endif
# Name Latitude Longitude Status created Action
{{$i}}. {{$location->name}} {{$location->latitude}} {{$location->longitude}} {{ $location->status == 1 ? "Active" : "In-Active" }} {{ $location->created_at->format(config('get.ADMIN_DATE_TIME_FORMAT')) }}
Record Not Available
@stop