@extends('layouts.app') @section('content') @php function stockLevel($total, $current) { $perc = ($current / $total) * 100; if ($perc <= 20) { return 'text-danger'; // Critical (red) } elseif ($perc <= 50) { return 'text-warning'; // Warning (yellow/orange) } elseif ($perc <= 100) { return 'text-success'; // Normal (blue) } else { return 'text-primary'; // Good (green) } } @endphp {{-- @include('dashboard.stock.navigation') --}}