@extends('admin.layouts.app') @section('title', 'Product Detail - ' . $product->name) @section('header', 'Product Detail') @section('content')
{{ ucfirst($product->type) }}
{{ $product->weight }} kg
Rp {{ number_format($product->total_price, 0, ',', '.') }}
{{ $product->stock_quantity }} unit
@if ($product->status === 'active') Active @else Inactive @endif
{{ $product->is_halal ? 'Halal Certified' : 'Not Certified' }}
{{ $product->description ?: '-' }}
{{ $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() }}