@extends('layouts.app') @section('content')
@if($product->image) {{ $product->name }} @else
No Image Available
@endif
@foreach($product->categories as $category) {{ $category->name }} @endforeach

{{ $product->name }}

PKR {{ $product->price }} @if($product->status === 'active') In Stock @elseif($product->status === 'out_of_stock') Out of Stock @else Unavailable @endif

Product Description

{!! $product->description !!}

Interested in this product?

Contact us today for bulk orders and detailed specifications.

@if($relatedProducts->count() > 0)

Related Products

@endif
@endsection