@extends('layouts.master') @section('title', $product->name) @section('content')
← Back to Products
@if(!empty($product->images_json))
@foreach($product->images_json as $index => $image) @if($index > 0) @endif @endforeach
@else
No images available.
@endif

{{ $product->name }}

Category: {{ $product->category->name }}

{{ $product->price }}

MOQ: {{ $product->moq }}


Description

{{ $product->description }}

@endsection