@extends('layouts.app')
@section('title', 'Setup Pilihanraya')
@section('content')
@foreach ([
['label' => 'Election', 'value' => $counts['elections'], 'icon' => 'bi-calendar-event', 'tone' => 'primary'],
['label' => 'DUN', 'value' => $counts['duns'], 'icon' => 'bi-map', 'tone' => 'info'],
['label' => 'Pusat', 'value' => $counts['pusat'], 'icon' => 'bi-building', 'tone' => 'success'],
['label' => 'Saluran', 'value' => $counts['saluran'], 'icon' => 'bi-diagram-3', 'tone' => 'success'],
['label' => 'Jawatan', 'value' => $counts['positions'], 'icon' => 'bi-person-vcard', 'tone' => 'secondary'],
['label' => 'Kuota', 'value' => $counts['quotas'], 'icon' => 'bi-list-ol', 'tone' => 'warning'],
['label' => 'PPM aktif', 'value' => $counts['ppmAssignments'], 'icon' => 'bi-person-check', 'tone' => 'primary'],
] as $card)
{{ $card['label'] }}
{{ $card['value'] }}
@endforeach
Tindakan Setup
@php $activeElection = \App\Models\Election::query()->where('status', 'active')->first(); @endphp
@if ($activeElection)
@endif
@endsection