@extends('layouts.master') @section('title', 'Products - ' . $seller->company_name) @section('content')
@if($seller->logo) Logo @else {{ substr($seller->company_name, 0, 1) }} @endif

{{ $seller->company_name }}

{{ $seller->city }}, {{ $seller->state }}, India @if($seller->is_verified) Trusted Seller @endif Manufacturer
Send Inquiry @if($seller->hasActiveSubscription()) View Number @endif
Home Products & Services @if($settings->show_about)About Us@endif Contact
Categories
All Products @foreach($categories as $cat) {{ $cat->name }} @endforeach

Products & Services @if(request('q')) (Search: "{{ request('q') }}") @endif

@if($products->count() > 0)
@foreach($products as $product)
{{ $product->name }}
{{ $product->name }}
{{ $product->currency == 'USD' ? '$' : '₹' }}{{ number_format($product->price, 0) }}
MOQ: {{ $product->moq }}
@endforeach
{{ $products->links() }}
@else

No products found matching your criteria.

View All Products
@endif
@endsection