{{-- Contoh penggunaan DashboardHelper di View --}} @extends('layout.layout') @section('content')

Dashboard {{ dashboard_type_label($type ?? 'pertek') }}

@foreach($statuses as $index => $status)
{{ dashboard_type_label($type ?? 'pertek') }}

{{ $status['label'] }}

{{ $status['value'] }}

{{-- Menampilkan trend jika bukan total --}} @if($status['id'] !== 'total') @php $trend = dashboard_trend($type ?? 'pertek', $status['id']); @endphp {{ $trend['value'] > 0 ? '+' : '' }}{{ $trend['value'] }}% @endif
@endforeach
{{-- Chart menggunakan helper --}} @php $chartData = dashboard_chart_data($type ?? 'pertek'); @endphp
Distribusi {{ dashboard_type_label($type ?? 'pertek') }}
@push('scripts') @endpush @endsection