@extends("front.$version.layout") @section('pagename') - {{__('Product')}} - {{convertUtf8($product->title)}} @endsection @section('styles') @endsection @section('meta-keywords', "$product->meta_keywords") @section('meta-description', "$product->meta_description") @php $reviews = App\ProductReview::where('product_id', $product->id)->get(); $avarage_rating = App\ProductReview::where('product_id',$product->id)->avg('review'); $avarage_rating = round($avarage_rating,2); @endphp @section('breadcrumb-title', $be->product_details_title) @section('breadcrumb-subtitle', strlen($product->title) > 40 ? mb_substr($product->title,0,40,'utf-8') . '...' : $product->title) @section('breadcrumb-link', strlen($product->title) > 40 ? mb_substr($product->title,0,40,'utf-8') . '...' : $product->title) @section('content')
{{convertUtf8($product->summary)}}
@endif{{convertUtf8($review->comment)}}
{{Session::get('error')}}
@enderror
@else