MIF_E31230596_SimpaudKartoh.../resources/views/admin/siswa/index.blade.php

65 lines
2.6 KiB
PHP

@extends('layouts.app')
@section('content')
<div class="bg-white shadow-md rounded-lg p-6">
<div class="flex justify-between items-center mb-4">
<h1 class="text-xl font-semibold text-gray-700">📚 Data Peserta Didik</h1>
<a href="{{ route('siswa.create') }}"
class="bg-green-600 text-white px-4 py-2 rounded hover:bg-green-700 transition">
+ Tambah Siswa
</a>
</div>
<table class="w-full table-auto border-collapse">
<thead>
<tr class="bg-green-600 text-white text-left">
<th class="p-2">#</th>
<th class="p-2">Nama</th>
<th class="p-2">NIS</th>
<th class="p-2">Kelas</th>
<th class="p-2">Wali Murid</th>
<th class="p-2">Foto</th>
<th class="p-2">Aksi</th>
</tr>
</thead>
<tbody>
@forelse ($siswa as $i => $item)
<tr class="border-b hover:bg-gray-50">
<td class="p-2">{{ $i+1 }}</td>
<td class="p-2">{{ $item->nama }}</td>
<td class="p-2">{{ $item->nis }}</td>
<td class="p-2">{{ $item->kelas->nama ?? '-' }}</td>
<td class="p-2">{{ $item->wali->nama ?? '-' }}</td>
<td class="p-2">
@if($item->foto)
<img src="{{ asset('storage/'.$item->foto) }}"
class="w-12 h-12 rounded object-cover">
@else
<span class="text-gray-400">-</span>
@endif
</td>
<td class="p-2 flex gap-2">
<a href="{{ route('siswa.edit', $item->id) }}"
class="bg-blue-500 text-white px-3 py-1 rounded hover:bg-blue-600">
Edit
</a>
<form action="{{ route('siswa.destroy', $item->id) }}" method="POST" onsubmit="return confirm('Yakin ingin menghapus?')">
@csrf
@method('DELETE')
<button type="submit"
class="bg-red-500 text-white px-3 py-1 rounded hover:bg-red-600">
Hapus
</button>
</form>
</td>
</tr>
@empty
<tr>
<td colspan="7" class="text-center text-gray-500 p-4">Belum ada data siswa</td>
</tr>
@endforelse
</tbody>
</table>
</div>
@endsection