@extends('layouts.admin') @section('page-title', 'POS System') @section('content')
{{-- Products Section --}}
@foreach($products as $product)
@if($product->primaryImage) {{ $product->name }} @else
@endif

{{ $product->name }}

{{ $currencySymbol }}{{ number_format($product->price, 2) }} {{ ($product->stock_quantity ?? 0) > 0 ? 'In Stock: ' . ($product->stock_quantity ?? 0) : 'Out of Stock' }}
@endforeach
{{-- Cart Section --}}

Cart is empty

  • Subtotal{{ $currencySymbol }}0.00
  • Tax ({{ $taxRate }}%){{ $currencySymbol }}0.00
  • Discount{{ $currencySymbol }}0.00

Total {{ $currencySymbol }}0.00

{{-- Payment Modal --}} {{-- Add Customer Modal --}} {{-- Checkout Details Modal --}} {{-- Success Modal --}} {{-- Receipt Template (Hidden) --}} @endsection