@extends('layouts.admin.app') @section('content')
Kembali Ke Sub Sesi
{{ request()->session->session_type }}
Kelas / Sesi Kelas / {{ request()->session->session_type }}
@if (request()->session->session_type != App\Models\Session::SDS) @endif @if (request()->session->session_type != App\Models\Session::SMT) @endif @forelse ($participants as $participant) @if (request()->session->session_type != App\Models\Session::SDS) @endif @if (request()->session->session_type != App\Models\Session::SMT) @endif @empty @endforelse
Terdapat {{ $participants->count() }} peserta aktif di sesi ini
No Nama PesertaNilaiEmail Usaha Budidaya ProvinsiAksi
{{ $loop->iteration }} {{ $participant->user->name }} @if (request()->session->session_type == App\Models\Session::SMT) @if ($participant->participant_sub_sessions->count()) Sudah Baca @else Belum Baca @endif @elseif (request()->session->session_type == App\Models\Session::SGM) {{ $participant->participant_sub_sessions[0]?->value ?? 0 }} @elseif (request()->session->session_type == App\Models\Session::SPL) {{ $participant->participant_sub_sessions[0]?->value ?? 0 }} @endif {{ $participant->user->email }} {{ $participant->user->cultivation_business }} {{ $participant->user->address }} @if (in_array(request()->session->session_type, [App\Models\Session::SGM, App\Models\Session::SPL])) @else
@csrf
@csrf
@endif
Tidak ada data
@if ($participants->count())
Show {{ $participants->firstItem() }} - {{ $participants->lastItem() }} of {{ $participants->total() }}
@endif
@endsection