@include('partials.sidebar') @include('partials.navbar')

Point of Sale

Product Catalog

@foreach($products as $product)
{{ $product->name }}

${{ number_format($product->selling_price, 2) }}

@if($product->stock <= 0) Out of Stock @elseif($product->stock < 10) Low Stock @endif
@endforeach
@foreach($categories as $category)
@foreach($category->products as $product)
{{ $product->name }}

${{ number_format($product->selling_price, 2) }}

@endforeach
@endforeach
Order Summary
Product Qty Price Total
Subtotal:
$0.00
Tax (18%):
$0.00
Total:
$0.00
@endsection @push('scripts') @endpush