@extends('layouts.app') @section('title', $product->name) @section('content')
@php $images = is_array($product->images) && count($product->images) > 0 ? $product->images : ['']; $discountPercent = $product->discountPercent(); $b2bProductInfo = $b2bProduct ?? null; $variationsJs = $product->variations->map(fn ($v) => [ 'id' => $v->id, 'group' => (string) $v->group, 'value' => (string) $v->value, 'mrp' => $v->mrp !== null ? (float) $v->mrp : (float) ($product->mrp ?? 0), 'price' => $v->price !== null ? (float) $v->price : (float) $product->price, 'image' => (string) ($v->image ?? ''), ])->values()->all(); @endphp
@foreach($images as $idx => $img) {{ $product->name }} @endforeach
@if($product->badge) {{ $product->badge }} @endif @if($b2bProductInfo) B2B Wholesale Available @endif
{{ $product->stock > 10 ? '● In Stock' : ($product->stock > 0 ? '● Only ' . $product->stock . ' Left' : '● Sold Out') }}
@if(count($images) > 1)
@foreach($images as $idx => $img) @endforeach
@endif
5-Yr Frame
Structural Warranty
Pan-India Delivery
Insured Heavy Transit
Site Assembly
Technician Support
GST Tax Invoice
Input Tax Credit Ready
@if($product->category) {{ $product->category->name }} @endif @if($product->equipment_type) {{ $product->equipment_type }} @endif @if($product->subcategory) {{ $product->subcategory }} @endif

{{ $product->name }}

@for($i = 1; $i <= 5; $i++) @endfor
{{ $product->rating }} ({{ $product->reviews_count }} Verified Gym Reviews)
₹{{ number_format($product->price, 2) }} ₹{{ number_format($product->mrp, 2) }} Save {{ $discountPercent }}% Off

Direct factory pricing. Price inclusive of standard 18% GST invoice.

@if(count($variationsJs))
@foreach($product->variations->groupBy('group') as $groupLabel => $groupVariations)
{{ $groupLabel }}
@foreach($groupVariations as $v) @endforeach
@endforeach
@endif @if($b2bProductInfo)
@if($currentCustomer)
B2B Wholesale Rate
MOQ: {{ $b2bProductInfo->min_order_qty }}
₹{{ number_format($b2bProductInfo->bulk_price, 2) }} / unit
{{ $b2bProductInfo->min_order_qty }}
@csrf
@else
B2B Wholesale Pricing
Login or register to view wholesale rates and place bulk orders.
@endif
@endif
Quantity:
1
@csrf {{-- Buy Now --}}
@if($b2bProductInfo && $b2bProductInfo->negotiation_enabled) @if($currentCustomer)
@csrf
Negotiate Price
@else
Negotiate your own price & quantity for this equipment — login to continue.
@endif @endif @if($b2bProductInfo) @endif
@if(is_array($product->features) && count($product->features) > 0)

Key Engineered Highlights:

    @foreach($product->features as $feat)
  • {{ $feat }}
  • @endforeach
@endif @if(is_array($product->target_muscles) && count($product->target_muscles) > 0)
Target Muscle Engagement:
@foreach($product->target_muscles as $muscle) {{ $muscle }} @endforeach
@endif
@if($product->description) {!! $product->description !!} @else

{{ $product->short_description }}

@endif
@if(is_array($product->specifications) && count($product->specifications) > 0)
@foreach($product->specifications as $key => $val) @endforeach
{{ $key }} {{ $val }}
@else

Technical specifications are being updated. Please contact our product experts for detailed spec sheets.

@endif

Pan-India Freight Logistics

All heavy fitness machinery and gym equipment are crated with wooden framing and industrial protective wrapping. Dispatched from our central warehousing hubs in Bengaluru, Delhi NCR, and Mumbai. Transit times range between 3 to 7 business days depending on city tier.

Certified Technician On-Site Assembly

For commercial gym setups, corporate fitness suites, and home gym equipment, certified technicians are available in all metropolitan areas and Tier 1/2 cities to provide unboxing, leveling, bolting, and pulley calibration.

Product Information
SKU: {{ $product->id }}
@if($product->subcategory)
Subcategory: {{ $product->subcategory }}
@endif @if($product->category)
Category: {{ $product->category->name }}
@endif @if($product->equipment_type)
Equipment Type: {{ $product->equipment_type }}
@endif
@if($related->count())

Related Gym Equipment

Recommended commercial gear to complete your workout station

@if($product->category) View All In Category @endif
@foreach($related as $relatedProduct) @endforeach
@endif
@endsection