35 lines
741 B
PHP
35 lines
741 B
PHP
@extends('admin.layouts.app')
|
|
|
|
@section('title', 'Leaderboard')
|
|
|
|
@section('content')
|
|
|
|
<h3 class="mb-4">🏆 Leaderboard</h3>
|
|
|
|
<table class="table table-striped bg-white">
|
|
<thead>
|
|
<tr>
|
|
<th>Ranking</th>
|
|
<th>NISN</th>
|
|
<th>Total EXP</th>
|
|
<th>Semester</th>
|
|
<th>Tahun Ajaran</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($leaderboards as $lb)
|
|
<tr>
|
|
<td>{{ $lb->ranking }}</td>
|
|
<td>{{ $lb->nisn }}</td>
|
|
<td>{{ $lb->total_exp }}</td>
|
|
<td>{{ $lb->semester }}</td>
|
|
<td>{{ $lb->tahun_ajaran }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
|
|
{{ $leaderboards->links() }}
|
|
|
|
@endsection
|