@extends('Website.Includes.header', ['meta_Details' => $meta_details]) @section('content')
Background Image

Shop

Sydney Quality Meats:

Products:

{{$product->category->title}}:

{{$product->title}}

{{ $product->title }}

{{$product->title}}

@php $priceMeta = $product->productMeta->firstWhere('option', '_price'); $price = $priceMeta ? $priceMeta->value : 'N/A'; $stockMeta = $product->productMeta->firstWhere('option', '_stock_status'); $stock = $stockMeta ? $stockMeta->value : ''; $weightMeta = $product->productMeta->firstWhere('option', '_weight'); $discountData = $product->discount_data ?? null; $weight = $weightMeta ? $weightMeta->value : 0; @endphp @if ($discountData)
${{ $price }} ${{ $discountData['discounted_price'] }} ({{$weight}} KG)
@else
${{ $price }} ({{$weight}} KG)
@endif
@php print ($product->short_description); @endphp
@csrf @if($stock == 'in_stock')
@else
@endif

Description

@php print ($product->long_description); @endphp

@endsection