@extends('layouts.app') @section('content')

Available Marriage Halls

@forelse($halls as $hall)
{{-- Preview Image --}} @if($hall->images->first()) @endif

{{ $hall->name }}

Location: {{ $hall->location }}

Capacity: {{ $hall->capacity }}

Price: ₹{{ $hall->price }}

View Details @auth @if(auth()->user()->role == 'admin' || auth()->id() == $hall->user_id) Edit
@csrf @method('DELETE')
@endif @endauth
@empty

No halls found.

@endforelse
@endsection