@extends('layouts.app') @section('content')

Every order, every station, visible in real time.

A Kitchen Display System replaces paper KOT tickets with a live screen at each station. Orders appear the moment they are placed, are tracked through prep, and marked done when ready — creating a closed loop from order to service.

@foreach([ ['Order placed at POS or handheld', 'The moment a captain or cashier sends an order, it appears on the relevant KDS screen.'], ['Routed to the right station', 'Hot counter, cold counter, bar, grill, or pantry — each item goes to the station that prepares it.'], ['Chef marks item ready', 'One tap on the KDS. The counter or waiter is notified. No shouting needed.'], ['Order complete — time tracked', 'Prep time is logged per item and per order. Kitchen performance visible in reports.'], ] as [$step, $desc])
{{ $loop->iteration }}

{{ $step }}

{{ $desc }}

@endforeach
@include('components.screen-mockup', ['label' => 'KDS — Hot Station', 'type' => 'kds'])
{{-- ── Full capabilities ─────────────────────────────────────────────────── --}}

From first ticket to final delivery.

{{-- ── Use cases ────────────────────────────────────────────────────────── --}}

Kitchen operations across every format.

@foreach([ ['Restaurant', 'Table service restaurants with multiple kitchen stations — hot, cold, desserts. KDS at each.', 'chef-hat'], ['Bar & Club', 'Bar station KDS for drink orders, separate food KDS for kitchen. Captain orders on handhelds.', 'cocktail'], ['Cloud Kitchen', 'Multi-brand order routing. Each brand\'s items go to the right station or prep area.', 'kitchen-set'], ] as [$type, $desc, $icon])
@include('components.icons.' . $icon)

{{ $type }}

{{ $desc }}

@endforeach
@endsection