@extends('layouts.main') @section('seo') {{ $product->item_name . " - " . config('app.name', 'Laravel') ?? config('app.name', 'Laravel') }} @if($product->img_01 != null && Storage::exists($product->img_01)) @else @endif @if($product->img_01 != null && Storage::exists($product->img_01)) @else @endif @endsection @section('content')

{{$product->item_name}}

@if($product->purchasable == false) @else
@if($product->price > 0 && $product->isPrinted == 1 && $product->stock_qty > 0) {{ __("product.printed") }}: {{priceView($product->price, true)}} @endif @if($product->price_ebooks > 0 && $product->isEbook == 1) {{ __("product.digital") }}: {{priceView($product->price_ebooks, true)}} @endif
@endif @if(isset($product->short_description))

{!! $product->short_description!!}

@endif

{!! __($product->short_description)!!}

{!! __($product->long_description)!!}

@if(count($correlated) > 0)

{{ __("product.similar_products") }}

@endif
@endsection @section('extraJs') @endsection