@extends('layouts.app') @section('title', 'New Sale') @section('nav_pos', 'bg-teal-50 text-teal-700 font-semibold') @section('page_title', 'New Sale') @section('page_subtitle', 'Build and process a transaction') @section('content') @if($errors->any())
@endif @php $catLabels = [ 'all' => 'All', 'food_beverage'=> 'Food & Bev', 'minibar' => 'Minibar', 'laundry' => 'Laundry', 'telephone' => 'Telephone', 'damage' => 'Damage', 'other' => 'Misc', ]; @endphp
{{-- Hidden form (Alpine populates these before submit) --}}
@csrf
{{-- Back link --}}
Back to POS
{{-- Step 1: Mode + room/payment selection --}}

Step 1 — How to settle?

{{-- Charge to Room: guest search --}}

No checked-in guests matching ""

{{-- Direct Sale: payment method --}}
{{-- Step 2: Products + Cart --}}
{{-- Products (2/3) --}}

Step 2 — Select Items

{{-- Category tabs --}}
@foreach($catLabels as $key => $label) @endforeach
{{-- Product grid --}}
{{-- Custom item button --}}
{{-- Cart (1/3) --}}

Cart

{{-- Empty state --}}

Tap a product or add a custom item

{{-- Cart items --}}
{{-- Total + Notes + Process --}}

Total

@endsection