@extends('layouts.app') @section('title', 'POS Checkout') @section('page_title', 'Point of Sale') @section('content')
@foreach($variants as $variant)
{{ $variant->sku }}
{{ $variant->variant_name }}
{{ $variant->product->product_name }}
{{ number_format($variant->selling_price) }} UGX Qty: {{ $variant->stock_qty }}
@endforeach
Checkout Cart

Cart is empty. Click on products to add.

Subtotal 0 UGX
Discount -0 UGX
VAT Tax 0 UGX
Grand Total 0 UGX
Change Due: 0 UGX
Balance Owed: 0 UGX
@endsection @section('scripts') @endsection