{{-- resources/views/products/index.blade.php --}} @extends('layouts.app') @section('title', 'Products') @section('content')

Products

Add Product
@if($products->isEmpty())

No products found.

@else
{{-- আগের "Web" কলাম → এখন Wholesale Price --}} @foreach($products as $product) {{-- 🔹 image thumbnail --}} @endforeach
Image ID SKU Name Size Color CostWholesale Price Outside Stock Actions
@if($product->image_primary) {{ $product->name }} @else
No Image
@endif
{{ $product->id }} {{ $product->sku }} {{ $product->name }} {{ $product->size ?? '-' }} {{ $product->color ?? '-' }} {{ number_format($product->std_cost ?? 0, 2) }} {{ number_format($product->price_web ?? 0, 2) }} {{ number_format($product->price_outside ?? 0, 2) }} {{ number_format($product->stock_qty ?? 0) }} Edit
@csrf @method('DELETE')
{{ $products->links() }}
@endif
@endsection