@extends('pmb.layout') @section('title', 'Dashboard PMB - Universitas Karyadarma Kupang') @section('content')

Dashboard Pendaftaran

{{ $pendaftaran->nomor_pendaftaran ?? 'Belum Ada' }}
Progress Pendaftaran {{ $pendaftaran->progress_percent ?? 0 }}%
@php $pengumumanList = $pengumumanList ?? \App\Models\PmbPengumuman::published()->orderByDesc('published_at')->take(5)->get(); @endphp @if($pengumumanList->count() > 0)
Pengumuman
@foreach($pengumumanList as $pengumuman)
{{ $pengumuman->judul }} {{ ucfirst($pengumuman->kategori) }}

{{ $pengumuman->isi }}

{{ $pengumuman->published_at?->format('d M Y H:i') ?? $pengumuman->created_at->format('d M Y') }}
@endforeach
@endif
No. Pendaftaran

{{ $pendaftaran->nomor_pendaftaran ?? '-' }}

Progress

{{ $pendaftaran->progress_percent ?? 0 }}%

Status

{{ ucfirst(str_replace('_', ' ', $pendaftaran->status ?? 'menunggu')) }}

Kartu Ujian
@if($pendaftaran->step === 'cetak_bukti' || $pendaftaran->step === 'menunggu_verifikasi' || $pendaftaran->status === 'lulus') Cetak @else Belum Tersedia @endif
Informasi
@php $pengumumanList = $pengumumanList ?? \App\Models\PmbPengumuman::published()->orderByDesc('published_at')->take(10)->get(); @endphp @if($pengumumanList->count() > 0)
@foreach($pengumumanList as $pengumuman)
{{ $pengumuman->judul }} {{ ucfirst(str_replace('_', ' ', $pengumuman->kategori)) }}

{{ $pengumuman->isi }}

{{ $pengumuman->published_at?->format('d M Y H:i') ?? $pengumuman->created_at->format('d M Y') }}
@endforeach
@else

Belum ada pengumuman

@endif
@endsection