Category: {{ $product->category->name ?? 'Industrial' }}
Platform MOQ Range: {{ \App\Models\Setting::getValue('min_moq', 10) }} - {{ \App\Models\Setting::getValue('max_moq', 150) }}
Product MOQ: {{ $product->moq ?? 1 }} {{ $product->unit->name ?? 'Pieces' }}
Price:
{{ $product->currency == 'USD' ? '$' : '₹' }}{{ number_format($product->price, 0) }}
per Piece
(Tax & Shipping Extra)
@if($product->specifications && is_array($product->specifications))
@foreach(array_slice($product->specifications, 0, 2) as $key => $val)
-
{{ is_string($key) ? $key . ': ' : '' }}{{ Str::limit($val, 30) }}
@endforeach
@endif
@if($seller->is_verified || in_array($seller->kyc_status, ['submitted', 'verified']))
@else
@endif
@if($isPremium)
@endif