@extends('layouts.master') @section('title', $product->name) @section('content')
@foreach($galleryImages as $key => $image)
Thumb
@endforeach

{{ $product->name }}

In Stock | Updated: {{ $product->updated_at->format('M d, Y') }}
Platform MOQ Range: {{ \App\Models\Setting::getValue('min_moq', 10) }} - {{ \App\Models\Setting::getValue('max_moq', 150) }}
Product MOQ: {{ $product->moq }} {{ $product->unit->name ?? 'Pieces' }}
{{ $product->currency == 'USD' ? '$' : '₹' }}{{ number_format($product->price, 2) }}
per {{ $product->unit->name ?? 'Piece' }}
@if($product->seller->hasActiveSubscription()) Call Seller @endif
Product Highlights
Brand: {{ $product->seller->company_name }}
Location: {{ $product->seller->city ?? 'India' }}
Shipping: Seller Managed
Description

{{ Str::limit($product->description, 200) }}

Read More
@if($product->seller->logo) @else
@endif
{{ $product->seller->company_name }}
Member since {{ $product->seller->created_at->format('Y') }}
{{ $product->seller->city ?? 'Unknown' }}, {{ $product->seller->state ?? '' }} @if($product->seller->kyc_status === 'submitted' || $product->seller->is_verified) KYC Submitted @endif
View Company Profile
Get Best Quote
@csrf

Your information is safe

{!! nl2br(e($product->description)) !!}
Product Name {{ $product->name }}
MOQ {{ $product->moq }} {{ $product->unit->name ?? 'Pieces' }}
Category {{ $product->category->name ?? 'N/A' }}
Price {{ $product->currency == 'USD' ? '$' : '₹' }}{{ number_format($product->price, 2) }}
{{ $product->seller->company_name }}

{{ $product->seller->about ?? 'No company description available.' }}

@include('public.products.partials.related-products')
@include('public.products.partials.share-card') @endsection