HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/farmfun.komma.pro/resources/views/shop/pages/products/show.blade.php
@php
    /** @var App\Komma\Shop\Products\Product\Product $product **/
    /** @var \App\Komma\Shop\Categories\Models\Category|null $productCategoryParent **/
    /** @var \App\Komma\Globalization\RegionInfo $regionInfo **/
@endphp

@extends('site.master')
@section('title', $product->meta_title)
@section('meta_description', $product->meta_description)

@section('content')
    <div class="l-main  l-contain">

        <div class="o-block">
            <p>
            <h2>{{ $product->translation->name }}</h2>
            @include('site.components.image', ['images' => $product->documents])
            <!--TODO Implement this product price details. See -->
            @lang('shop/catalog.price_ex') <span dusk="price_ex">{{ $regionInfo->getCurrencySymbol().' '.$regionInfo->getNumberFormat()->centsToCurrency($product->price) }}</span><br>
            @lang('shop/catalog.price') <span  dusk="price_inc">{{ $regionInfo->getCurrencySymbol().' '.$regionInfo->getNumberFormat()->centsToCurrency($product->price_inc) }}</span><br>
            @lang('shop/vatrates.vat') <span dusk="vat_amount">{{ $regionInfo->getCurrencySymbol().' '.$regionInfo->getNumberFormat()->centsToCurrency($product->vat_amount) }}</span>
            </p>
        </div>
    </div>
@endsection