@include('layouts.navigation')
{{-- Header --}}
← Back to Products

Product Details

Complete information about this product

✏️ Edit
@csrf @method('DELETE')
{{-- Main Content --}}
{{-- Product Image Section --}}
{{ $product->name }}
{{-- Stock Status Badge --}}
@if($product->stock > 50)
In Stock

High availability

@elseif($product->stock > 0)
Low Stock

Reorder recommended

@else
Out of Stock

Unavailable

@endif
{{-- Product Info Section --}}
{{-- Basic Info Card --}}
📦

Basic Information

{{ $product->name }}

#{{ str_pad($product->id, 5, '0', STR_PAD_LEFT) }}

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

{{ $product->stock }} units

{{-- Description Card --}}
📝

Description

@if($product->description)

{{ $product->description }}

@else

No description available for this product.

@endif
{{-- Metadata Card --}}
🕐

Metadata

{{-- Statistics Card --}}
📊

Quick Statistics

{{ $product->stock }} Available Stock
Rp {{ number_format($product->price * $product->stock, 0, ',', '.') }} Total Value
@if($product->stock > 50) High @elseif($product->stock > 0) Low @else Out @endif Stock Status
{{-- Action Buttons --}}
✏️ Edit Product