@extends('layouts.admin')
@section('title')
Absensi Harian
@endsection
@section('customStyle')
@endsection
@section('content')
Total Laporan
{{ $participant->reports()->count() }}
{{--
Tambah Peserta --}}
{{ $participant->name }}
Laporan Tersimpan :
@foreach($participant->reports as $report)
- {{ $report->month }}
@endforeach
| No |
Laporan |
Bulan |
Aksi |
@php
$i = 0;
@endphp
@if ($participant->reports->isNotEmpty())
@foreach ($participant->reports as $report)
@php
$i++;
@endphp
| {{ $i }} |
{{ $report->file }} |
{{ $report->month }} |
|
@endforeach
@else
| Data Tidak Ada |
@endif
@endsection
@section('script')
@endsection