@extends('layouts.admin') @section('title', 'Inventory: ' . ($inventory->product->name ?? 'Unknown')) @section('page_title', 'Inventory Details') @section('content')
Back to Inventory Edit Inventory
Inventory Information
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' }}
Details
Created: {{ $inventory->created_at->format('M d, Y H:i') }}
Updated: {{ $inventory->updated_at->format('M d, Y H:i') }}
@endsection