@extends('layouts.admin') @section('title') Absensi Harian @endsection @section('customStyle') @endsection @section('content')
Total Laporan
{{ $participant->reports()->count() }}
Data Laporan
{{-- Tambah Peserta --}}

{{ $participant->name }}

Laporan Tersimpan :
    @foreach($participant->reports as $report)
  • {{ $report->month }}
  • @endforeach
@csrf @method('put')
@php $i = 0; @endphp @if ($participant->reports->isNotEmpty()) @foreach ($participant->reports as $report) @php $i++; @endphp @endforeach @else @endif
No Laporan Bulan Aksi
{{ $i }} {{ $report->file }} {{ $report->month }}
@csrf @method('patch')
@csrf @method('delete')
Data Tidak Ada
@endsection @section('script') @endsection