@extends('admin.layout') @section('title', 'Dashboard') @section('content') @php $cards = [ 'posts' => ['label' => 'Posts', 'icon' => 'fa-newspaper', 'route' => 'admin.posts.index'], 'events' => ['label' => 'Events', 'icon' => 'fa-calendar', 'route' => 'admin.events.index'], 'programs' => ['label' => 'Programs', 'icon' => 'fa-hand-holding-heart', 'route' => 'admin.programs.index'], 'donations' => ['label' => 'New Donations', 'icon' => 'fa-heart', 'route' => 'admin.donations'], 'feedback' => ['label' => 'New Feedback', 'icon' => 'fa-comments', 'route' => 'admin.feedback'], 'beneficiaries' => ['label' => 'Pending Requests', 'icon' => 'fa-people-group', 'route' => 'admin.beneficiaries'], ]; $actions = [ ['label' => 'Create Post', 'icon' => 'fa-plus', 'route' => 'admin.posts.create'], ['label' => 'Create Event', 'icon' => 'fa-calendar-plus', 'route' => 'admin.events.create'], ['label' => 'Create Program', 'icon' => 'fa-hand-holding-medical', 'route' => 'admin.programs.create'], ['label' => 'Website Settings', 'icon' => 'fa-gear', 'route' => 'admin.settings'], ]; @endphp
@foreach($cards as $key => $card)
{{ $card['label'] }}
{{ number_format($stats[$key] ?? 0) }}
@endforeach

Quick Actions

Common content tasks for the Karwan team.

@foreach($actions as $action) {{ $action['label'] }} @endforeach
@endsection