@extends('admin.layouts.app') @section('title','Inventory') @section('breadcrumb') / Inventory @endsection @section('content')
Manage product stock and transactions
| S.N. | Product | Code | Category | Unit | Current Stock | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ ($products->currentPage()-1)*$products->perPage()+$i+1 }} |
@if($product->product_image)
{{ $product->product_name }}
@if($product->description)
{{ Str::limit($product->description,40) }}
@endif
|
{{ $product->product_code }} |
{{ $product->category ?? '—' }} | {{ $product->unit ?? 'pcs' }} | @php $qty = $product->current_quantity; $color = $qty === 0 ? 'danger' : ($qty < 10 ? 'warning' : 'success'); @endphp {{ $qty }} @if($qty === 0) Out of stock @elseif($qty < 10) Low stock @endif | {{ ucfirst($product->status) }} | |
|
No products found |
|||||||