@extends('layouts.app') @section('title', $product->name.' — '.config('site.brand.name')) @section('meta_description', \Illuminate\Support\Str::limit(strip_tags($product->short_description ?: $product->description), 155)) @section('content')
{{-- Gallery --}}
@if ($product->coverImageUrl()) {{ $product->name }} @else
{{ config('site.brand.product_line') }}
@endif
@if (count($product->galleryUrls()) > 1)
@foreach ($product->galleryUrls() as $i => $url) @endforeach
@endif
{{-- Details --}}
{{ $category->name }}

{{ $product->name }}

@if ($product->short_description)

{{ $product->short_description }}

@endif
@if ($product->hasPrice()) ₹{{ number_format((float) $product->price, 2) }} @else {{ __('site.product_price_on_request') }} @endif @if ($product->isOnOffer()) ₹{{ number_format((float) $product->mrp, 2) }} @endif @if ($product->unit_label) {{ __('site.product_unit_label') }}: {{ $product->unit_label }} @endif
@if (site_settings()->whatsappUrl()) {{ __('site.btn_whatsapp_us') }} @endif @if (site_settings()->phone) {{ __('site.btn_call_now') }} @endif
@if ($product->description)

{{ __('site.nav_about') }}

{{ $product->description }}

@endif
@if ($related->isNotEmpty())

{{ __('site.product_related_title') }}

@foreach ($related as $relatedProduct) @endforeach
@endif @endsection