@php
$widgets = [
['title' => 'Servers', 'count' => $serverCount, 'icon' => 'fas fa-server', 'bg' => 'bg-info', 'progress' => 50],
['title' => 'Office Accounts', 'count' => $officeAccountCount, 'icon' => 'fas fa-building', 'bg' => 'bg-secondary', 'progress' => 40],
['title' => 'Gmail Accounts', 'count' => $gmailAccountCount, 'icon' => 'fas fa-envelope', 'bg' => 'bg-success', 'progress' => 60],
['title' => 'Emails Delivered', 'count' => $emailsSentToday, 'icon' => 'fas fa-paper-plane', 'bg' => 'bg-primary', 'progress' => 80],
['title' => 'Bounced Emails', 'count' => $bounceEmailCount, 'icon' => 'fas fa-exclamation-triangle', 'bg' => 'bg-danger', 'progress' => 30],
];
@endphp
@foreach ($widgets as $widget)
@endforeach