@extends('chef.layout') @section('title', 'Kitchen Dashboard') @push('head') @endpush @section('content')

Kitchen Display

Track and manage orders from new through cooking.

Loading...
{{-- Auto-Print Status Banner --}} {{-- Popup permission notice — only shown once --}}

For auto-print to work: allow popups for this site in your browser address bar when prompted.

{{-- Queue (accepted by admin) --}}

Queue

{{ $queuedOrders->count() }}
@forelse($queuedOrders as $order) @include('admin.partials.kitchen-order-card', ['order' => $order, 'column' => 'queued']) @empty
Queue is empty
@endforelse
{{-- Cooking --}}

Cooking

{{ $cookingOrders->count() }}
@forelse($cookingOrders as $order) @include('admin.partials.kitchen-order-card', ['order' => $order, 'column' => 'cooking']) @empty
Nothing cooking
@endforelse
{{-- ── Order Detail Modal ── --}}
{{-- ── Remove Item Modal ── --}}
Remove Item from Order
{{-- populated by JS --}}
@endsection @push('scripts') @endpush