@extends('layouts.master') @section('title', $product->name) @section('content')
| Brand: | {{ $product->seller->company_name }} |
| Location: | {{ $product->seller->city ?? 'India' }} |
| Shipping: | Seller Managed |
Your information is safe
| 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->about ?? 'No company description available.' }}