@extends('layouts.app') @section('title', 'Current Stock') @section('content')

Current Stock

@foreach($materials as $m) @php $isLowStock = (float) $m->current_stock <= (float) $m->min_stock_level; @endphp @endforeach
Material Category Unit Project Current Stock Alert Level Status
{{ $m->material_name }} {{ $m->category ?? '—' }} {{ strtoupper($m->unit) }} @if($m->project_id) {{ $m->project_name }} @else Unassigned @endif {{ number_format((float) $m->current_stock, 2) }} {{ number_format((float) $m->min_stock_level, 2) }} @if($isLowStock) Low Stock @else OK @endif
@endsection