@extends('backEnd.layouts.master') @section('title','Stock Report') @section('content')

Stock Report

@if($outOfStock->count())
Out of Stock ({{ $outOfStock->count() }})
@foreach($outOfStock as $p) @endforeach
ProductCategoryPriceStatus
@if($p->thumbnail)@endif {{ Str::limit($p->name,45) }}
{{ $p->category->name ?? '—' }} ৳{{ number_format($p->price) }} Out of Stock Ledger
@endif
Low Stock ≤ 10 units ({{ $lowStock->count() }})
@forelse($lowStock as $p) @empty @endforelse
ProductCategoryStockPrice
@if($p->thumbnail)@endif {{ Str::limit($p->name,45) }}
{{ $p->category->name ?? '—' }} {{ $p->stock }} ৳{{ number_format($p->price) }} Ledger
All products have adequate stock.
@endsection