{{-- resources/views/products/index.blade.php --}} @extends('layouts.app') @section('title', 'Products') @section('content')
No products found.
@else| Image | ID | SKU | Name | Size | Color | Cost | {{-- আগের "Web" কলাম → এখন Wholesale Price --}}Wholesale Price | Outside | Stock | Actions |
|---|---|---|---|---|---|---|---|---|---|---|
|
@if($product->image_primary)
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 |