@extends('frontend.layouts.app') @section('title', $product->name) @section('content')
@if($product->images->count())
@foreach($product->images as $img) @endforeach
@endif
{{ $product->category->name ?? '' }}

{{ $product->name }}

@if($product->discount_price){{ $siteSettings['currency'] }}{{ number_format($product->regular_price,2) }}@endif {{ $siteSettings['currency'] }}{{ number_format($product->finalPrice(),2) }}

{{ $product->description }}

@if($product->ingredients)

Ingredients

{{ $product->ingredients }}

@endif {{ $product->stock_quantity > 0 ? 'Available' : 'Currently Unavailable' }}
@if($related->count())

You Might Also Like

@endif
@endsection