Dashboard

@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)
{{ $widget['title'] }} {{ $widget['count'] }}
@if($widget['title'] == 'Total Earnings This Month') Earnings from all sources. @else Total number of {{ strtolower($widget['title']) }}. @endif
@endforeach