@extends('shop::layouts.master') @inject ('reviewHelper', 'Webkul\Product\Helpers\Review') @php $total = $reviewHelper->getTotalReviews($product); $avgRatings = $reviewHelper->getAverageRating($product); $avgStarRating = round($avgRatings); @endphp @section('page_title') {{ trim($product->meta_title) != "" ? $product->meta_title : $product->name }} @stop @section('full-content-wrapper') {!! view_render_event('bagisto.shop.products.view.before', ['product' => $product]) !!}
@csrf() {{-- ===================== HERO: IMAGE + BUY BOX ===================== --}}
{{-- LEFT: GALLERY --}}
@include ('shop::products.view.gallery')
{{-- RIGHT: BUY BOX --}}
{{-- Product name --}}

{{ $product->name }}

{{-- Price + Stock in one line --}}
@include ('shop::products.price', ['product' => $product]) @if ($product->getTypeInstance()->isSaleable()) In Stock @else Out of Stock @endif
{{-- Quantity --}}

{{-- Actions --}}
@include ('shop::products.buy-now', ['product' => $product]) @include ('shop::products.add-to-cart', [ 'form' => false, 'product' => $product, 'showCartIcon' => false, ])
{{-- ===================== FULL WIDTH REPORT CONTENT ===================== --}} {{-- ===================== REPORT SECTION (2 COLUMN) ===================== --}}
{{-- LEFT: REPORT CONTENT --}}
@include ('shop::products.view.short-description') @include ('shop::products.view.attributes') @include ('shop::products.view.description')
{{-- RIGHT: REPORT SIDEBAR --}}
{{-- Payment methods --}}

Payment Methods Accepted

Visa Mastercard PayPal
{!! view_render_event('bagisto.shop.products.view.after', ['product' => $product]) !!} @endsection @push('scripts') @endpush