@extends('layouts.app') @section('title', 'Point of Sale') @section('content')
{{-- Sisi Kiri: Katalog Produk --}}
{{-- POS Header & Search --}}

Terminal Kasir

Pilih produk untuk ditambahkan ke pesanan.

{{-- Category Tabs --}}
Semua Makanan Minuman Snack Elektronik
{{-- Product Grid --}}
@php $products = [ [ 'id' => 1, 'name' => 'Kopi Susu Gula Aren', 'price' => 18000, 'img' => 'https://images.unsplash.com/photo-1541167760496-162955ed8a9f?w=200&q=80', 'cat' => 'Minuman', ], [ 'id' => 2, 'name' => 'Croissant Almond', 'price' => 25000, 'img' => 'https://images.unsplash.com/photo-1555507036-ab1f4038808a?w=200&q=80', 'cat' => 'Makanan', ], [ 'id' => 3, 'name' => 'Earl Grey Tea', 'price' => 15000, 'img' => 'https://images.unsplash.com/photo-1594631252845-29fc458639a8?w=200&q=80', 'cat' => 'Minuman', ], [ 'id' => 4, 'name' => 'Spaghetti Carbonara', 'price' => 45000, 'img' => 'https://images.unsplash.com/photo-1612459284970-e8f027596582?w=200&q=80', 'cat' => 'Makanan', ], [ 'id' => 5, 'name' => 'French Fries', 'price' => 20000, 'img' => 'https://images.unsplash.com/photo-1630384066242-17a17833f347?w=200&q=80', 'cat' => 'Snack', ], [ 'id' => 6, 'name' => 'Cheesecake Slice', 'price' => 32000, 'img' => 'https://images.unsplash.com/photo-1533134242443-d4fd215305ad?w=200&q=80', 'cat' => 'Makanan', ], ]; @endphp @foreach ($products as $p) {{-- Bagian Gambar: Diperbaiki --}}
{{ $p['name'] }}

{{ $p['cat'] }}

{{ $p['name'] }}

Rp{{ number_format($p['price'], 0, ',', '.') }}

@endforeach

Pesanan Saat Ini

Reset
Walk-in Customer
{{-- Order List --}}
{{-- Summary & Checkout --}}
Subtotal
Pajak (10%)
Total
Bayar Sekarang
@endsection