@section('title', 'POS') @section('description', 'POS') @extends('layout.app') @section('content')
Cart
Image Item Price Action
Grand Total: $0
@if (count($products) > 0)
@foreach ($products as $product)
Product
{{ $product->product_name }}

({{ $product->account_holder }})

@endforeach
@else

No Product Available

@endif
@endsection