@extends('cms.application') @section('content')
List of Google Maps
@if($google_maps->count() == 0)
@else @foreach($google_maps as $key => $google_map) @endforeach
S/N Regional Office Map Option
{{ $key+1 }} @php echo wordwrap($google_map->office->name,60,"
") @endphp
View Map Edit {!! link_to_route('cms.googlemaps.destroy', "delete", array($google_map->id), array('data-method' => 'delete', 'data-confirm' => 'Are you Sure' ,'class' => 'label theme-b bg-danger text-white f-12')) !!}
@endif
@stop