@extends('layouts.admin') @section('title', $product->name) @section('page-title', 'Product Details') @section('breadcrumb') @endsection @section('content')
Product Image
@if($product->image_path) {{ $product->name }} @else

No image available

@endif
Quick Actions
Edit Product
Product Information
@if($product->is_featured) Featured Product @endif
ID {{ $product->id }}
Name {{ $product->name }}
Category {{ $product->category }}
Price ${{ number_format($product->price, 2) }}
Stock @if($product->stock_quantity > 10) {{ $product->stock_quantity }} In Stock @elseif($product->stock_quantity > 0) {{ $product->stock_quantity }} Low Stock @else Out of Stock @endif
Created {{ $product->created_at->format('M d, Y H:i A') }}
Last Updated {{ $product->updated_at->format('M d, Y H:i A') }}
Product Description
{{ $product->description }}
@endsection