All Locations

Locations List

@if(request('city_name')) Reset @endif
@forelse ($locations as $loc) @empty @endforelse
# City Name Slug Meta Title Status Created At Updated At Actions
{{ $loop->iteration + ($locations->currentPage() - 1) * $locations->perPage() }} {{ $loc->city_name ?? '—' }} {{ $loc->slug ?? '—' }} {{ Str::limit($loc->meta_title, 40) ?? '—' }} {{ $loc->status ? 'Active' : 'Inactive' }} {{ $loc->created_at ? $loc->created_at->format('d M, Y') : '—' }} {{ $loc->updated_at ? $loc->updated_at->format('d M, Y') : '—' }} Edit
@csrf @method('DELETE')
No Locations found.
@if ($locations->count())
Showing {{ $locations->firstItem() }} to {{ $locations->lastItem() }} of {{ $locations->total() }} entries
{{ $locations->withQueryString()->links('pagination::bootstrap-5') }}
@endif