@extends('admin.layouts.home') @section('title', 'Product Details') @section('styles') @endsection @section('content')
{{ $product->category->name ?? 'Uncategorized' }}
@if($product->store) {{ $product->store->name }} @else N/A @endif
@if($product->stock > 10) {{ $product->stock }} in stock @elseif($product->stock > 0) {{ $product->stock }} in stock (Low) @else Out of stock @endif
{{ $product->orders_count ?? 0 }} orders
{{ $product->description ?? 'No description available.' }}
{{ $product->created_at->format('M d, Y H:i') }}
{{ $product->updated_at->format('M d, Y H:i') }}
| {{ $key }} | {{ $value }} |
|---|
{{ $review->review }}