Quick Actions

Penggunaan Bulan Ini

{{ now()->format('M Y') }}

Total Biaya Bahan

Rp {{ number_format($stats['monthly_material_usage'] ?? 0, 0, ',', '.') }}

Penggunaan bahan baku bulan ini

Total Biaya Sparepart

Rp {{ number_format($stats['monthly_sparepart_usage'] ?? 0, 0, ',', '.') }}

Penggunaan sparepart bulan ini

Total Penggunaan

Rp {{ number_format(($stats['monthly_material_usage'] ?? 0) + ($stats['monthly_sparepart_usage'] ?? 0), 0, ',', '.') }}

Tugas Menunggu

@php $totalPendingTasks = ($stats['my_planning_productions'] ?? 0) + ($stats['my_pending_approvals'] ?? 0) + ($stats['pending_quotations'] ?? 0); @endphp @if($totalPendingTasks > 0) {{ $totalPendingTasks }} @endif
@if(($stats['my_planning_productions'] ?? 0) > 0)
Planning Perlu Dibuat
{{ $stats['my_planning_productions'] ?? 0 }}
@endif @if(($stats['my_pending_approvals'] ?? 0) > 0)
Planning Menunggu Approval
{{ $stats['my_pending_approvals'] ?? 0 }}
@endif @if(($stats['pending_quotations'] ?? 0) > 0)
Penawaran Perlu Estimasi
{{ $stats['pending_quotations'] ?? 0 }}
@endif @if($totalPendingTasks === 0)

Tidak ada tugas menunggu

@endif