Files

47 lines
2.2 KiB
PHP
Raw Permalink Normal View History

2026-05-30 22:15:16 +07:00
@extends('layouts.app')
@section('title', 'Dashboard HR - LMS V2.0')
@section('content')
<div class="max-w-7xl mx-auto">
<div class="mb-8 flex justify-between items-end">
<div>
<h1 class="text-3xl font-extrabold text-slate-900 tracking-tight">Statistik Pelatihan CPOB</h1>
<p class="text-sm text-slate-500 mt-1">Ringkasan performa dan kepatuhan training karyawan bulan ini.</p>
</div>
<div>
<button class="bg-indigo-600 text-white px-4 py-2 rounded-md shadow hover:bg-indigo-700 text-sm font-semibold">
+ Buat Ujian Baru
</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-8">
<div class="bg-white p-6 rounded-xl shadow-sm border border-slate-100">
<p class="text-xs font-bold text-slate-400 uppercase">Total Karyawan</p>
<h3 class="text-3xl font-bold text-slate-900 mt-1">{{ $statistics['total_karyawan'] }}</h3>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm border border-slate-100">
<p class="text-xs font-bold text-slate-400 uppercase">Trainer Internal</p>
<h3 class="text-3xl font-bold text-slate-900 mt-1">{{ $statistics['total_trainer'] }}</h3>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm border border-slate-100">
<p class="text-xs font-bold text-slate-400 uppercase">SOP Aktif</p>
<h3 class="text-3xl font-bold text-slate-900 mt-1">{{ $statistics['total_sop'] }}</h3>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm border border-slate-100">
<p class="text-xs font-bold text-slate-400 uppercase">Total Kelulusan</p>
<h3 class="text-3xl font-bold text-emerald-600 mt-1">{{ $statistics['lulus_ujian'] }}</h3>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm border border-slate-100 p-6">
<h3 class="text-lg font-bold text-slate-900 mb-4">Matriks Kepatuhan SOP Departemen</h3>
@livewire('matrix.compliance-monitor')
</div>
</div>
@endsection