Inventory Items

Add Inventory
@forelse ($inventories as $inventory) @empty @endforelse
NAME QUANTITY STATUS TYPE PRICE CREATED ON UPDATED ON
{{ $inventory->name }} {{ $inventory->quantity }} @if ($inventory->quantity > 0) @if ($inventory->quantity <= 10) Low Stock @else In Stock @endif @else Out of Stock @endif {{ $inventory->type }} {{ $inventory->price ? currency_format($inventory->price) : 'Free' }} {{ $inventory->created_at->format('M d, h:i A') }} {{ $inventory->updated_at->format('M d, h:i A') }} Make Sale Add Quantity
@csrf @method('DELETE')
No inventories found.
@include('partials.pagination', ['paginator' => $inventories])