@extends('layouts.app') @section('title', 'POS') @section('content')

Menu

@if (!$order)
@if ($tableId)

No open order for this table yet.

@csrf
@else

How is this order being fulfilled?

@csrf
@endif
@else
@foreach ($categories as $cat) @if ($cat->products->count()) @endif @endforeach
@foreach ($categories as $cat) @if ($cat->products->count())
{{ $cat->name }}
@foreach ($cat->products as $p)
@php $inCart = $cartQuantities[$p->id] ?? 0; @endphp @if ($p->hasVariants()) @else
@endif
@endforeach
@endif @endforeach @endif
@if ($order) @include('pos.partials.cart-panel') @endif
@if ($order) @endif @endsection @section('scripts') @endsection