@extends('layouts.app') @section('title', 'Detail Data Siswa') @section('content')
Detail Data Siswa
Informasi Sekolah
Nama Sekolah:
{{ $student->school->name }}
NPSN:
{{ $student->school->npsn }}
Jenjang:
{{ $student->school->level }}
Alamat:
{{ $student->school->address }}
Data Identitas
Nama Lengkap:
{{ $student->nama }}
NIK:
{{ $student->nik }}
NISN:
{{ $student->nisn }}
NIS:
{{ $student->nis }}
Kelas:
{{ $student->kelas }}
Jenis Kelamin:
@if($student->jenis_kelamin) {{ $student->jenis_kelamin == 'L' ? 'Laki-laki' : 'Perempuan' }} @else - @endif
Tempat & Tanggal Lahir
Tempat Lahir:
{{ $student->tempat_lahir }}
Tanggal Lahir:
{{ $student->tanggal_lahir->format('d F Y') }}
Usia:
{{ $student->age }} tahun
Informasi Tambahan
Nama Ibu:
{{ $student->nama_ibu }}
Jenis Ketunaan:
@if($student->disabilityType) {{ $student->disabilityType->code }} {{ $student->disabilityType->name }} @if($student->disabilityType->description)
{{ $student->disabilityType->description }} @endif @else Tidak ada @endif
Alamat:
{{ $student->alamat ?? '-' }}
Nomor Telepon:
{{ $student->phone ?? '-' }}
Informasi Sistem
Dibuat Pada:
{{ $student->created_at->format('d F Y, H:i') }} WIB
Terakhir Diubah:
{{ $student->updated_at->format('d F Y, H:i') }} WIB
Status
Status Siswa: {{ $student->is_active ? 'Aktif' : 'Nonaktif' }}

{{ $student->nama }}

{{ $student->nis }}

Aksi
Edit Data
@csrf @method('DELETE')
Kembali ke Daftar
@endsection