@extends('admin.layout.app') @section('heading','Dashboard') @section('main_content') {{-- //model array order dosent have to match with view array --}}
@php $stats = [ ['label' => 'Total Portfolio Categories', 'icon' => 'fa-folder', 'key' => 'portfolioCategoryCount', 'route' => route('category_show'), 'bg_color' => 'bg-primary'], ['label' => 'Total Portfolios', 'icon' => 'fa-file', 'key' => 'portfolioCount', 'route' => route('portfolio_show'), 'bg_color' => 'bg-success'], ['label' => 'Total Testimonials', 'icon' => 'fa-quote-left', 'key' => 'testimonialCount', 'route' => route('testimonial_show'), 'bg_color' => 'bg-warning'], ['label' => 'Total Blog Posts', 'icon' => 'fa-comment', 'key' => 'blogCount', 'route' => route('blog_card_show'), 'bg_color' => 'bg-danger'], ['label' => 'Total Team Members', 'icon' => 'fa-users', 'key' => 'teamCount', 'route' => route('team_show'), 'bg_color' => 'bg-info'], ['label' => 'Total Services', 'icon' => 'fa-desktop', 'key' => 'serviceCount', 'route' => route('service_card_show'), 'bg_color' => 'bg-primary'], ['label' => 'Total FAQ', 'icon' => 'fa-question-circle', 'key' => 'faqCount', 'route' => route('faq_show'), 'bg_color' => 'bg-dark'], ['label' => 'Total Clients Slide', 'icon' => 'fa-user', 'key' => 'clientCount', 'route' => route('client_show'), 'bg_color' => 'bg-light'], ['label' => 'Subscribers Count', 'icon' => 'fa-users', 'key' => 'subscriberCount', 'route' => route('admin_bulk_emails_show') , 'bg_color' => 'bg-success'], ]; @endphp @foreach($stats as $stat)

{{ $stat['label'] }}

{{ $data[$stat['key']] ?? 0 }}
@endforeach
@endsection