TechStore

Product Catalog

Sort By:
@if(isset($products) && $products->count() > 0)
@foreach($products as $product)
@if($product->image_path) {{ $product->name }} @else
No Image
@endif ID: #{{ $product->id }}

{{ $product->name }}

{{ $product->description ?? 'No extra overview details provided.' }}

৳{{ number_format($product->price, 2) }} {{ $product->stock_quantity > 0 ? $product->stock_quantity . ' left' : 'Sold Out' }}
@endforeach
@else

Display Shelves Empty

Sign into your admin dashboard control panel to add inventory items.

@endif