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

Our Branches

@forelse($branches as $branch)
@if($branch->image) {{ $branch->name }} @else
@endif @if($branch->is_main) Main Branch @endif

{{ $branch->name }}

{{ $branch->isOpenNow() ? 'Open' : 'Closed' }}

{{ $branch->address }}, {{ $branch->city }}

{{ $branch->phone }}

@if($branch->email)

{{ $branch->email }}

@endif

{{ $branch->opening_time }} – {{ $branch->closing_time }}

Capacity: {{ $branch->seating_capacity }} seats

Book Table @if($branch->google_map_url) @endif
@empty

No branches found.

@endforelse
@endsection