Inventory Items

Add Inventory
@if ($message = Session::get('success')) @endif @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 ? env('APP_CURRENCY_SYMBOL') ?? '$' . number_format($inventory->price, 2) : 'Free' }} {{ $inventory->created_at->format('M d, h:i A') }} {{ $inventory->updated_at->format('M d, h:i A') }} Make Sale Add Quantity {{-- Edit--}} {{--
--}} {{-- @csrf--}} {{-- @method('PATCH')--}} {{-- --}} {{--
--}} {{-- Remove--}}
No inventories found.
@include('partials.pagination', ['paginator' => $inventories])