@extends('layouts.app') @section('title','Dashboard') @section('content')

Dashboard

Ringkasan Penggajian SGI dan aktivitas operasional.
{{now()->format('d-m-Y H:i')}}
@php $dashboardCards = [ ['Total Pegawai',$totalPegawai,'👥',route('pegawai.index'),'Pegawai aktif'], ['Presensi Hari Ini',$presensiHariIni,'◷',route('presensi.index'),'Kehadiran hari ini'], ]; if(auth()->user()->role !== 'PEGAWAI'){ $dashboardCards[]=['Pengajuan Menunggu',$pengajuanMenunggu,'📝',route('pengajuan.index','pegawai'),'Perlu diperiksa']; } $dashboardCards[]=['Pinjaman Aktif',$pinjamanAktif,'▤',route('pinjaman.index'),'Masih berjalan']; $dashboardCards[]=['Kasbon Aktif',$kasbonAktif,'▣',route('kasbon.index'),'Masih berjalan']; if(auth()->user()->role !== 'PEGAWAI'){ $dashboardCards[]=['Payroll Terakhir',$payrollTerakhir??'-','💰',route('payroll.periods'),'Periode terakhir']; } @endphp @foreach($dashboardCards as $c)
{{$c[2]}}
{{$c[0]}}
{{$c[1]}}
{{$c[4]}}
@endforeach
@if(auth()->user()->role !== 'PEGAWAI')
Akses cepat
@endif @endsection