@extends('layouts.app') @section('title', 'Materials') @section('content')
| # | Material | Category | Unit | Current Stock | Alert Level | Unit Price | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $m->id }} | {{ $m->material_name }} @if($m->isLowStock()) Low @endif | {{ $m->category ?? '—' }} | {{ $m->unit }} | {{ number_format((float) $m->current_stock, 2) }} | {{ number_format((float) $m->min_stock_level, 2) }} | ৳{{ number_format((float) $m->unit_price, 2) }} | {{ $m->is_active ? 'Active' : 'Inactive' }} | |
| No materials found. | ||||||||