@extends('admin-layouts.master') @section('content')

Tambah Booking Service

Kembali
Form Booking Service
@csrf
@error('booking_id')
{{ $message }}
@enderror
@error('service_date')
{{ $message }}
@enderror
@foreach($services as $category => $categoryServices)
@foreach($categoryServices as $service)
@endforeach
@endforeach
@error('services')
{{ $message }}
@enderror
@error('notes')
{{ $message }}
@enderror
Batal
@if(isset($booking))
Info Booking
ID: #{{ $booking->id }}
Tamu: {{ $booking->guest->name }}
Check-in: {{ $booking->check_in_date_formatted }}
Status: {{ ucfirst($booking->status) }}
@endif
@push('styles') @endpush @push('scripts') @endpush @endsection