Menu setup

Categories, kitchen stations, and modifier options for your products.

{{-- Categories --}}

Categories

Group products on the register (e.g. Coffee, Food).

@csrf
    @forelse ($categories as $category)
  • {{ $category->name }}
    @csrf @method('DELETE')
  • @empty
  • No categories yet.
  • @endforelse
{{-- Stations --}}

Kitchen stations

Route items to a prep station (e.g. Kitchen, Bar).

@csrf
    @forelse ($stations as $station)
  • {{ $station->name }}
    @csrf @method('DELETE')
  • @empty
  • No stations yet.
  • @endforelse
{{-- Modifier groups --}}

Modifier groups

Options like Size or Add-ons. Attach groups to products on the product form.

@csrf
@forelse ($groups as $group)

{{ $group->name }} choose {{ $group->min_select }}–{{ $group->max_select ?? 'any' }}

@csrf @method('DELETE')
    @foreach ($group->modifiers as $modifier)
  • {{ $modifier->name }} @if ($modifier->price_delta_minor !== 0) ({{ $modifier->price_delta_minor > 0 ? '+' : '' }}{{ number_format($modifier->price_delta_minor / 100, 2) }}) @endif
    @csrf @method('DELETE')
  • @endforeach
@csrf
@empty

No modifier groups yet.

@endforelse