@extends('layouts.admin') @section('title', 'Jadwal & Reservasi') @section('breadcrumb', 'Operasional / Reservasi') @section('content')
| Waktu | Pelanggan | Layanan | Terapis | Ruangan | Status | Aksi |
|---|---|---|---|---|---|---|
|
{{ $r->starts_at->format('d M Y H:i') }}
@if($r->duration_minutes)
{{ $r->duration_minutes }} menit
@endif
|
{{ $r->customer_name }}
@if($r->customer_phone)
{{ $r->customer_phone }}
@endif
|
{{ $r->service?->name ?? '—' }} | {{ $r->therapist?->name ?? '—' }} | {{ $r->room ? 'Ruang '.$r->room->number : '—' }} | @if($r->status === 'confirmed') Dikonfirmasi @elseif($r->status === 'pending') Menunggu @else Dibatalkan @endif | @if($r->status !== 'cancelled') @else — @endif |
| Belum ada reservasi. | ||||||