@extends('layouts.app') @section('title', 'Peserta Magang') @section('content')
{{-- HEADER --}}

Data Peserta Magang

PT Putra Taro Paloma

{{-- TABLE --}}
@forelse($pesertaList as $i => $peserta) @empty @endforelse
No NIM Nama Prodi Asal Periode Status Aksi
{{ $pesertaList->firstItem() + $i }} {{ $peserta->nim }} {{ $peserta->nama }} {{ $peserta->program_studi }} {{ $peserta->asal_instansi }} {{ $peserta->periode_mulai?->format('d M Y') }} – {{ $peserta->periode_selesai?->format('d M Y') }} @if($peserta->status == 'aktif') Aktif @else Selesai @endif {{-- Tombol Edit --}} {{-- Tombol Hapus --}} {{-- Hidden form hapus (WAJIB di luar tombol, punya id unik) --}}
Belum ada data peserta magang
{{ $pesertaList->links() }}
{{-- ================= MODAL TAMBAH ================= --}} {{-- ================= MODAL EDIT ================= --}} {{-- ================= TOAST CONTAINER ================= --}}
{{-- ================= CONFIRM DIALOG ================= --}} {{-- ================= AUTO TOAST dari session ================= --}} @if(session('success')) @endif @if(session('error')) @endif @endsection