@isset ($business->vendorCategory)
{{ $business->vendorCategory->name }}
@endisset
{{ $business->company_name }}
Who We Are
@foreach ($business->vendorSubcategories as $vendorSubcategory)
{{ $vendorSubcategory->name }}
@endforeach
Services Offered
@foreach ($business->vendorServices as $vendorService)
{{ $vendorService->name }}
@endforeach
@isset($business->about)
About Business
{{ $business->about }}
@endisset
@isset($business->whyus_content)
Why Choose Us
{{ $business->whyus_content }}
@endisset
Business Information
Email
{{ $business->email ?? '--' }}
Mobile
{{ $business->mobile_number ?? '--' }}
GSTIN
{{ $business->gstin ?? 'Not Provided' }}
Member Since
{{ \Carbon\Carbon::parse($business->created_at, 'Asia/Kolkata')->format('d/m/Y') }}
@if (isset($business->social_fb) || isset($business->social_insta) || isset($business->social_linkedin) || isset($business->social_yt))
Social Connect
@isset($business->social_fb)
@endisset
@isset($business->social_insta)
@endisset
@isset($business->social_linkedin)
@endisset
@isset($business->social_yt)
@endisset
@endif