@extends('layout.master', ['title' => 'Product']) @section('content')

{{ $single_category->category_name }} /

{{ $single_sub_category->sub_category_name }}
@foreach ($product_galleries as $product_gallery)
Product gallery images
@endforeach
Product images
@csrf

{{ $product->title }}

@php $rating = $product->rating; @endphp @for ($i = 0; $i < 5; $i++) @if ($rating >= 1) @else @endif @php $rating--; @endphp @endfor

({{ $product->rating_count }} reviews)

@if ($product->sku > '0')

In Stock

@else

Stock Out

@endif

৳ {{ $product->discounted_price }}

(৳ {{ $product->price }})

{{ $product->short_description }}

Colors:

@if (count($colors) > 0) @foreach ($colors as $color) @endforeach @else

No color available :(

@endif

Size:

@if (count($sizes) > 0) @foreach ($sizes as $size) @endforeach @else

No size available :(

@endif

কার্টে যোগ করুন

01752922241

01752922241

{!! $product->description !!}

Review

@foreach ($reviews as $review)
{{ $review->name }}
@php $rating = $review->rating; @endphp @for ($i = 0; $i < 5; $i++) @if ($rating >= 1) @else @endif @php $rating--; @endphp @endfor

{{ $review->review }}

@endforeach
{{-- Related product start --}} @endsection @section('scripts') @endsection