Product Details

Edit
@if($product->image) {{ $product->name }} @else
@endif
@if($product->is_active) Active @else Inactive @endif

{{ $product->name }}

SKU: {{ $product->sku }}

Price

{{ $product->formatted_price }}

Brand

{{ $product->brand }}

Type

{{ $product->type_label }}

Size

{{ $product->size }}

Min Stock

{{ $product->min_stock }}

@if($product->description)

Description

{{ $product->description }}

@endif

Stock Information

Total Stock {{ $product->total_stock }}
@if($product->isLowStock())

Low stock warning! Current stock is below minimum threshold.

@endif @if($product->stocks->count() > 0)
Stock by Warehouse
@foreach($product->stocks as $stock)

{{ $stock->warehouse->name }}

{{ $stock->warehouse->address }}

{{ $stock->quantity }}

Available: {{ $stock->available }}

@endforeach
@else

No stock available yet

@endif

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

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