{{-- resources/views/admin/coaches/index.blade.php --}} @extends('admin.layouts.app') @section('content')
| No | Foto | Identitas (NIK & Nama) | Spesialisasi & Nomor | Domisili & Kontak | Aksi | {{-- Lebar sedikit ditambah agar tombol muat --}}
|---|---|---|---|---|---|
| {{ $loop->iteration }} |
@if($coach->photo)
|
{{ $coach->name }}
{{ $coach->nik }}
@if($coach->gender == 'male')
Putra
@else
Putri
@endif
@php
$levelColor = 'secondary';
if($coach->coach_level == 'Level 1') $levelColor = 'success';
if($coach->coach_level == 'Level 2') $levelColor = 'warning text-dark';
if($coach->coach_level == 'Level 3') $levelColor = 'dark';
@endphp
{{ $coach->coach_level }}
|
@if($coach->disciplines->count() > 0)
@foreach($coach->disciplines->groupBy('category.name') as $categoryName => $disciplines)
@else
Belum ada spesialisasi.
@endif
{{ $categoryName }}
@foreach($disciplines as $disc)
{{ $disc->name }}
@endforeach
|
||
Belum ada data pelatih yang terdaftar.Tambah Pelatih Baru |
|||||