@extends('layouts.admin') @section('title', 'Locations') @section('content') @if(session('success')) @endif
All Locations
@forelse($locations as $location) @empty @endforelse
Image Name Slug Short Description Actions
@if($location->image_url) @else
@endif
{{ $location->name }}
{{ $location->slug }} {{ Str::limit($location->short_description, 50) }}
@csrf @method('DELETE')

No locations found.

@if($locations->hasPages())
{{ $locations->links('pagination::bootstrap-5') }}
@endif @endsection