@extends('user.template') @section('title', $title) @section('head') @endsection @section('content')

Pelaporan

{{ $title }}

1. Pelaporan Pelaksanaan Penilaian Risiko


Ket : Semua OPD dan Pemda ; Pelaporan Dilaksanakan Awal Tahun

@foreach ($awalTahuns as $no => $awalTahun) @endforeach
No Entitas
{{ $no + 1 }} {{ $awalTahun->entitas }} @if ($awalTahunMenegement) @if (Auth::user()->entitas_id == $awalTahun->entitas_id or Auth::user()->id == 1) Hapus @endif @endif Download
@if ($awalTahunMenegement) @endif

2. Pelaporan Berkala Pengelolaan Risiko


2.1 Pelaporan Unit Pemilik Risiko

Ket : Semua OPD dan Pemda ; Pelaporan Dilaksanakan Setiap Tribulan

@foreach ($unitRisikos as $no => $unitRisiko) @endforeach
No Nama Laporan Entitas
{{ $no + 1 }} {{ $unitRisiko->name }} {{ $unitRisiko->entitas }} @if ($unitRisikoMenegement) @if (Auth::user()->entitas_id == $unitRisiko->entitas_id or Auth::user()->id == 1) Hapus @endif @endif Download
@if ($unitRisikoMenegement) @endif
@if (in_array(Auth::user()->role, ['Pemda', 'Asisten', 'Sekretariat Daerah']))

2.2 Pelaporan Unit Kepatuhan

Ket : Asisten Sekretariat Daerah ; Pelaporan Dilaksanakan Setiap Tribulan

@if (in_array(Auth::user()->role, ['Asisten']) or Auth::user()->id == 1)
@foreach ($unitKepatuhans as $no => $unitKepatuhan) @endforeach
No Nama Laporan Keterangan
{{ $no + 1 }} {{ $unitKepatuhan->name }} {{ $unitKepatuhan->note }} @if (Auth::user()->entitas_id == $unitKepatuhan->entitas_id or Auth::user()->id == 1) Hapus @endif Download
@endif

2.3 Pelaporan Komite Pengelolaan

Ket : Sekretariat Daerah atau Bupati ; Pelaporan Dilaksanakan Setiap Tribulan

@if (in_array(Auth::user()->role, ['Sekretariat Daerah']) or Auth::user()->id == 1)
@foreach ($komitePengelolaans as $no => $komitePengelolaan) @endforeach
No Nama Laporan Keterangan
{{ $no + 1 }} {{ $komitePengelolaan->name }} {{ $komitePengelolaan->note }} @if (Auth::user()->entitas_id == $komitePengelolaan->entitas_id or Auth::user()->id == 1) Hapus @endif Download
@endif
@endif

3. Pelaporan Reviu Unit Pengawasan

@if (count($lampirans))
@foreach ($lampirans as $no => $lampiran) @endforeach
No Entitas Nama Lampiran
{{ $no + 1 }} {{ $lampiran->entitas }} {{ $lampiran->name }} @if (Auth::user()->role == 'Pemda') Hapus @endif Download
@endif @if (Auth::user()->role == 'Pemda') @endif

4. Pelaporan Evaluasi Unit Pengawasan

@if (count($evaluasi))
@foreach ($evaluasi as $no => $ev) @endforeach
No Entitas Nama Lampiran
{{ $no + 1 }} {{ $ev->entitas }} {{ $ev->name }} @if (Auth::user()->role == 'Pemda') Hapus @endif Download
@endif @if (Auth::user()->role == 'Pemda') @endif
@endsection @section('script') @endsection