@extends('admin.layouts.app') @section('title', 'Daftar Challenge') @section('content')

DAFTAR CHALLENGE

@if(session('success'))
Berhasil {{ session('success') }}
@endif
@forelse($challenges as $i => $ch) @php $isLewat = \Carbon\Carbon::parse($ch->tenggat_waktu)->isPast(); @endphp @empty @endforelse
No Judul Challenge Kelas Soal Total EXP Tenggat Aksi
{{ $challenges->firstItem() + $i }}
{{ $ch->judul_challenge }}
@if($ch->deskripsi)
{{ Str::limit($ch->deskripsi, 50) }}
@endif
@foreach($ch->kelas as $k) {{ $k->tingkat }} {{ $k->nama_kelas }} @endforeach {{ $ch->soal_count }} soal {{ $ch->exp }} EXP @if($isLewat) Lewat Lewat @else Aktif Aktif @endif
{{ \Carbon\Carbon::parse($ch->tenggat_waktu)->format('d M Y, H:i') }}
Lihat Detail
@csrf @method('DELETE')
Belum ada challenge.
{{ $challenges->links() }}
{{-- ============================================================ --}} {{-- MODAL TAMBAH (2-step) --}} {{-- ============================================================ --}} {{-- ============================================================ --}} {{-- MODAL EDIT --}} {{-- ============================================================ --}} @endsection