@if($product->seller->is_verified || in_array($product->seller->kyc_status, ['submitted', 'verified']))
KYC Submitted
@else
KYC Pending
@endif
/ {{ $product->name }}
Platform MOQ Range: {{ \App\Models\Setting::getValue('min_moq', 10) }} - {{ \App\Models\Setting::getValue('max_moq', 150) }}
Product MOQ: {{ $product->moq }} {{ Str::plural($product->unit->name ?? 'Piece') }}
Seller handles delivery
Price: {{ $product->currency == 'USD' ? '$' : '₹' }}{{ number_format($product->price, $product->currency == 'USD' ? 2 : 0) }} per {{ $product->unit->name ?? 'Piece' }}
Product Details:
@php
$descLines = array_filter(explode("\n", strip_tags($product->description ?? '')));
$descLines = array_slice($descLines, 0, 3);
@endphp
@forelse($descLines as $line)
@if(trim($line))
- {{ Str::limit(trim($line), 60) }}
@endif
@empty
- Premium quality material
- Available in all standard sizes
- Durable and long-lasting
@endforelse
@if($product->seller->is_verified || in_array($product->seller->kyc_status, ['submitted', 'verified']))
KYC Submitted
@else
KYC Pending
@endif
@php
$plan = $product->seller->subscription?->plan;
$planName = $plan ? $plan->name : 'Free';
$isPremium = $plan && $plan->is_featured;
@endphp
@if($isPremium)
{{ $planName }}
@else
{{ $planName }}
@endif