@extends('layouts.app') @section('title', 'Statistik Meja Restoran - Hotel Management System') @section('page-title', 'Statistik Meja Restoran') @section('page-actions')
@endsection @section('content')| No. Meja | Kapasitas | Status | Total Pesanan | Pesanan Pending | Pesanan Selesai | Utilization Rate |
|---|---|---|---|---|---|---|
| {{ $table->table_number }} | {{ $table->capacity }} orang | @switch($table->status) @case('available') Tersedia @break @case('occupied') Sedang Digunakan @break @case('reserved') Dipesan @break @case('maintenance') Maintenance @break @endswitch | {{ $table->total_orders }} | @if($table->pending_orders > 0) {{ $table->pending_orders }} @else - @endif | {{ $table->served_orders }} |
@php
$utilizationRate = $totalTables > 0 ? ($table->total_orders / max($totalTables, 1)) * 100 : 0;
@endphp
|