@extends('layouts.master') @section('css') @endsection @section('content')
@csrf @method('post')

About City


(Image Size will be less then 3 MB)

@foreach ($images as $image)
@endforeach
{{-- Location List --}}

Locations ({{ $locations->total() }})

@if (count($locations) > 0) @php $i = $locations->perPage() * ($locations->currentPage() - 1) + 1; @endphp @foreach ($locations as $location) @php $extra = collect($location->extra ?? []); @endphp @endforeach @else @endif
Sr. No Name Index Description Location Link Action
{{ $i++ }} {{ $location->name ?? '-' }} {{ $location->index ?? '-' }} @if ($location->description) {!! Str::limit($location->description, 30) !!} @else - @endif @if ($extra->get('location_link')) {{ Str::limit($extra->get('location_link'), 30) }} @else - @endif
No Data Found
{{ $locations->appends(Request::all())->links() }}
@endsection @section('js') @endsection