@php
$items = [
['label' => 'New Projects', 'color' => 'blue', 'count' => $data['new_projects'], 'status' => 'ALL'],
['label' => 'Active Projects', 'color' => 'green', 'count' => $data['active_projects'], 'status' => 'Working'],
['label' => 'Closed Projects', 'color' => 'red', 'count' => $data['closed_projects'], 'status' => 'Complete'],
['label' => 'Paused Projects', 'color' => 'yellow', 'count' => $data['paused_projects'], 'status' => 'Paused'],
['label' => 'Issue Projects', 'color' => 'orange', 'count' => $data['issue_projects'], 'status' => 'Issues']
];
@endphp
@foreach ($items as $item)
@endforeach
${{ number_format($data['total_amount'], 2) }}
${{ number_format($data['amount_received'], 2) }}