@extends('layouts.app') @section('title', 'Current Stock') @section('content')
| 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 |