@extends('layouts.app') @section('title', 'Daftar Laporan - KITA AKADEMIK') @section('page-title', 'Daftar Laporan & Aduan') @section('content')
Reset
@if($laporans->isEmpty())
Laporan Tidak Ditemukan

Cobalah untuk menyesuaikan filter pencarian Anda.

@else
@foreach($laporans as $lap) @endforeach
KASUS ID PELAPOR / PTS KATEGORI JUDUL LAPORAN TANGGAL MASUK STATUS AKSI
#K-{{ str_pad($lap->id, 4, '0', STR_PAD_LEFT) }}
{{ $lap->pelapor_nama }}
{{ $lap->pts_nama }}
@if($lap->tipe_laporan === 'preventif_konseling') Preventif Konseling @elseif($lap->tipe_laporan === 'kekerasan_bullying') Kekerasan / Bullying @elseif($lap->tipe_laporan === 'integritas_akademik') Integritas Akademik @endif
{{ $lap->judul }}
{{ Str::limit($lap->deskripsi, 50) }}
{{ $lap->created_at->format('d M Y') }}
{{ $lap->created_at->format('H:i') }} WIB
@if($lap->dipantau_lldikti) Dipantau LLDIKTI
@endif @include('laporan._status_badge', ['status' => $lap->status])
Detail
{{ $laporans->links() }}
@endif
@endsection