@extends('themes.electronics.layouts.master') @section('title', $product->meta_title ?? $product->name) @section('content')
{{-- Images --}}
@if($product->thumbnail) {{ $product->name }} @else
@endif
@if($product->images->count() > 0)
@if($product->thumbnail) @endif @foreach($product->images as $img) @endforeach
@endif
{{-- Info --}}

{{ $product->name }}

@if($product->brand)

Brand: {{ $product->brand->name }}

@endif
৳{{ number_format($product->sale_price ?? $product->price) }} @if($product->sale_price && $product->sale_price < $product->price) ৳{{ number_format($product->price) }} {{ $product->discount_percent }}% OFF @endif
@if($product->short_description)
{{ $product->short_description }}
@endif
@if($product->stock > 0) In Stock ({{ $product->stock }}) @else Out of Stock @endif @if($product->is_freeshipping) Free Shipping @endif
@include('themes.shared.shipping-info-table', [ 'product' => $product, 'shippingRatesTable' => $shippingRatesTable ?? [], 'showShippingTable' => $showShippingTable ?? false, 'shippingMessage' => $shippingMessage ?? null, ])
@csrf
{{-- Trust badges --}}
Fast Delivery
100% Original
7-Day Return
{{-- Description Tabs --}} @if($product->description)
{!! $product->description !!}
@if($product->reviews->count() > 0)
@foreach($product->reviews as $review)
{{ $review->reviewer_name }}
@for($i=1;$i<=5;$i++)@endfor

{{ $review->comment }}

@endforeach
@endif
@endif
@endsection @push('scripts') @endpush