@extends('admin.layout') @section('title', 'View Product') @section('content')

Product Details

Edit
@csrf @method('DELETE')
Back
Product Information
Product Name:
{{ $product->name }} @if($product->best_seller) Best Seller @endif
Description:
{{ $product->description }}
Price:
Rp {{ number_format($product->price, 0, ',', '.') }}
Stock:
{{ $product->stock }} units
Created:
{{ $product->created_at->format('d M Y, H:i') }}
Last Updated:
{{ $product->updated_at->format('d M Y, H:i') }}
Product Image
@if($product->image) {{ $product->name }} @else

No image available

@endif
Quick Stats
Status
{{ $product->stock > 0 ? 'In Stock' : 'Out of Stock' }}
Total Value: Rp {{ number_format($product->price * $product->stock, 0, ',', '.') }}
@endsection