@extends('layouts.admin') @section('title', 'Inventory: ' . ($inventory->product->name ?? 'Unknown')) @section('page_title', 'Inventory Details') @section('content')
| Product: |
@if($inventory->product)
{{ $inventory->product->name }}
SKU: {{ $inventory->product->sku }} @else Product Removed @endif |
| Current Quantity: | {{ $inventory->quantity }} |
| Location: | {{ $inventory->location ?? 'Not specified' }} |
| Last Updated: | {{ $inventory->last_updated?->format('M d, Y H:i') ?? 'Never' }} |
| Created: | {{ $inventory->created_at->format('M d, Y H:i') }} |
| Updated: | {{ $inventory->updated_at->format('M d, Y H:i') }} |