@extends('layouts.master') @section('title', $seller->company_name . ' - The Mini Port') @section('meta_tags') @endsection @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
@if($settings->show_about)

About {{ $seller->company_name }}

{!! nl2br(e($seller->about)) !!}
Year Established {{ $settings->years_in_business ? now()->subYears($settings->years_in_business)->year : 'N/A' }}
Business Type {{ is_array($seller->business_type) ? implode(', ', $seller->business_type) : $seller->business_type }}
Employees {{ $settings->employees_count ?? '10-50' }} People
Market Cover Pan India
@endif @if($settings->show_products)

Featured Products

View All
@foreach($products->take(3) as $product)
{{ $product->name }}
{{ $product->currency == 'USD' ? '$' : '₹' }}{{ number_format($product->price, 0) }}
@endforeach
@endif
@endsection