Settings

Register location, receipt footer, and catalog imports.

@csrf @method('PUT')

Location

Restaurant mode adds the Floor and Kitchen screens to the sidebar.

@if ($location->isRestaurant())

Import catalog

Seed your local POS catalog from CRM or Merchant storefronts. (Retail mode reads products live from CRM, so no import is needed.)

@csrf
@if ($merchantImportEnabled)
@csrf
@endif
@endif @if ($location->isRestaurant())

Tables

Dine-in tables shown on the Floor screen.

@csrf
@if ($tables->isNotEmpty())
    @foreach ($tables as $table)
  • {{ $table->label }} · {{ $table->area ?: 'Floor' }} · {{ $table->seats }} seats · {{ $table->isFree() ? 'free' : 'occupied' }}
    QR
    @csrf @method('DELETE')
  • @endforeach
@endif
@endif