@extends('layouts.app') @section('title', 'Detail Layanan Kamar - Hotel Management System') @section('page-title', 'Detail Layanan Kamar') @section('page-actions')
Kembali Edit
@endsection @section('content')
Informasi Layanan Kamar
Nama Layanan: {{ $roomService->name }}
Kategori: {{ $roomService->category }}
Harga: Rp {{ number_format($roomService->price, 0, ',', '.') }}
Status: @if($roomService->is_available) Tersedia @else Tidak Tersedia @endif
Dibuat: {{ $roomService->created_at->format('d/m/Y H:i') }}
Diperbarui: {{ $roomService->updated_at->format('d/m/Y H:i') }}
@if($roomService->description)
Deskripsi:

{{ $roomService->description }}

@endif
Statistik

{{ $roomService->roomServiceOrders->count() }}

Total Pesanan

Aksi
Edit Layanan
@csrf @method('DELETE')
@endsection