@extends('layouts.app')
@section('title', 'Papan Pemuka Perunding')
@section('heading', 'Papan Pemuka')
@section('page-title', 'Papan Pemuka Perunding')
@section('subtitle', $consultant?->nama_perunding)
@section('actions')
Mula Serahan Baharu
@endsection
@section('content')
@unless ($consultant)
Akaun anda belum dipautkan kepada profil perunding. Sila hubungi JPP.
@else
@foreach ([
['Pusat Data Ditugaskan', $dataCentres->count(), 'hdd-rack', 'primary'],
['Serahan Tertunggak', $pendingCount, 'hourglass-split', 'warning'],
['Permohonan Pembetulan', $correctionCount, 'pencil-square', 'danger'],
['Jumlah Serahan', $submissions->count(), 'file-earmark-text', 'info'],
] as [$label, $value, $icon, $color])
@endforeach
@if ($activeCycle)
Kitaran aktif: Pembaharuan {{ $activeCycle->renewal_year }} / Pelaporan {{ $activeCycle->reporting_year }}.
Tarikh tutup serahan: {{ $activeCycle->cut_off_date?->format('d/m/Y') }}
@if ($activeCycle->isOverdue()) Lampau Tempoh @endif
@endif
| Pusat Data | Kitaran | Status | Dikemaskini | |
@forelse ($submissions as $s)
| {{ $s->dataCentre->nama_pusat_data }} |
Pembaharuan {{ $s->reportingCycle->renewal_year }} / Pelaporan {{ $s->reportingCycle->reporting_year }} |
{{ $s->statusLabel() }} |
{{ $s->updated_at->format('d/m/Y H:i') }} |
@if ($s->isEditableByConsultant())
Isi
@endif
Lihat
|
@empty
| Tiada serahan lagi. |
@endforelse
@endunless
@endsection