@push('styles') @vite([ 'resources/css/jesselyn.css', 'resources/css/sorting.css', ])

Restaurant Dashboard

@if($restaurant)
Selamat Datang Kembali!

{{ $restaurant->name }}

{{ $restaurant->location }}

Edit Restaurant Kelola Antrian
Total Bookings

{{ number_format($totalBookings) }}

All time
Today's Bookings

{{ number_format($todayBookings) }}

{{ now()->format('d M Y') }}
This Week

{{ number_format($weeklyBookings) }}

{{ now()->startOfWeek()->format('d M') }} - {{ now()->endOfWeek()->format('d M') }}
Capacity

{{ number_format($restaurant->capacity ?? 0) }}

Maximum guests
Informasi Restaurant

{{ $restaurant->name }}

{{ $restaurant->location }}

{{ $restaurant->category ?? 'Restaurant' }}

{{ $restaurant->capacity ?? 'Tidak ditentukan' }} orang

{{ $restaurant->time_estimation ?? 'Tidak ditentukan' }} menit

Aktif
@if($restaurant->description)

{{ $restaurant->description }}

@endif
Gallery Restaurant
@if($restaurant->cover)
{{ $restaurant->name }}
@else

Tidak ada gambar cover

@endif @if($restaurant->img1 || $restaurant->img2 || $restaurant->img3)
@if($restaurant->img1)
@endif @if($restaurant->img2)
@endif @if($restaurant->img3)
@endif
@endif
@else

Belum Ada Restaurant yang Ditugaskan

Anda belum ditugaskan untuk mengelola restaurant. Silakan hubungi administrator untuk penugasan.

@endif