@extends('front.layouts.app', ['title' => $product->name, 'description' => $product->description, 'image' => isset($product->productsImageFirst) && isset($product->productsImageFirst->filename) ? url('storage') . '/' . $product->productsImageFirst->filename: '']) @section('content') @include('front.layouts.app-header')
@if($product->productsImageFirst != '') @endif
@if(count($product->productImages) > 0) @foreach($product->productImages as $image) @endforeach @else @endif
@if(count($product->productImages) > 0) @foreach($product->productImages as $image)
@endforeach @else
@endif
@include('front.product-detail.product-common-detail')

Product Description

{{$product->description}}

Shipping Details

{{$product->shipping_detail}}

Reviews

Write A Review

@if (count($reviews) > 0) @include('front.product-detail.product-review-list') @else

No review found

@endif
@if (count($reviews) > 3) @endif
@include('front.layouts.app-footer') @endsection @section('custom-js') @endsection