@extends('partials.main') @section('content')

Dashboard Progress

Progress per karyawan berdasarkan master pitstop aktif
Total Step Aktif
{{ $totalSteps }}
Total Karyawan
{{ $totalUsers }}
Total Step Lulus
{{ $totalSelesai }}

Progress per Karyawan

@forelse ($users as $row) @php $done = (int) $row->lulus_count; $pct = $totalSteps > 0 ? round(($done / $totalSteps) * 100) : 0; @endphp @empty @endforelse
Nama Progress Step Lulus
{{ $row->nama }}
{{ $pct }}%
{{ $done }} / {{ $totalSteps }}
Belum ada data
Halaman {{ $users->currentPage() }} dari {{ $users->lastPage() }} ({{ $users->total() }} data)
@if ($users->onFirstPage()) @else Sebelumnya @endif @if ($users->hasMorePages()) Berikutnya @else @endif
@endsection @section('custom_js') @endsection