@extends('sales.layout.guest-layout') @section('main')
@csrf

Select Product

Please select category
@forelse ($products as $product) @empty @endforelse
S.No Image Product Quantity on Hand Order Quantity Unit Price Selling Price
$product->id, 'price' => $product->price])' data-id="{{ $product->id }}"> {{ $loop->iteration }} Product Image {{ $product->name }} {{ $product->quantity_on_hand }}
+
${{ $product->price }} $
No products available for this category.
{{ $products->links() }}
@endsection