@extends('admin.layouts.app') @section('title', 'Product Detail - ' . $product->name) @section('header', 'Product Detail') @section('content')

{{ $product->name }}

@if ($product->image_path) {{ $product->name }} @else
No Image Available
@endif

Product Type

{{ ucfirst($product->type) }}

Weight

{{ $product->weight }} kg

Price

Rp {{ number_format($product->total_price, 0, ',', '.') }}

Stock Quantity

{{ $product->stock_quantity }} unit

Status

@if ($product->status === 'active') Active @else Inactive @endif

Halal Status

{{ $product->is_halal ? 'Halal Certified' : 'Not Certified' }}

Description

{{ $product->description ?: '-' }}

Storage Instructions

{{ $product->storage_instructions ?: '-' }}

Created at: {{ $product->created_at->format('d M Y, H:i') }}

Last updated: {{ $product->updated_at->format('d M Y, H:i') }}

Total Orders: {{ $product->orderItems->count() }}

@endsection