@extends('layouts.app') @section('title', 'Detail Murid Baru') @section('content')

Detail Murid Baru

Informasi lengkap siswa

Kembali
@csrf @method('DELETE')
Data Identitas Siswa

{{ $student->nik }}

{{ $student->nis }}

{{ $student->nama }}

{{ $student->tempat_lahir }}

{{ $student->tanggal_lahir->format('d F Y') }} ({{ $student->age }} tahun)

@if($student->jenis_kelamin == 'L') Laki-laki @else Perempuan @endif

{{ $student->agama }}

Data Orang Tua

{{ $student->nama_ayah }}

{{ $student->tahun_lahir_ayah }} ({{ date('Y') - $student->tahun_lahir_ayah }} tahun)

{{ $student->nama_ibu }}

{{ $student->tahun_lahir_ibu }} ({{ date('Y') - $student->tahun_lahir_ibu }} tahun)

Data Kontak & Alamat

{{ $student->alamat }}

{{ $student->phone }}

Data Pendidikan

{{ $student->sekolah_asal ?? '-' }}

{{ $student->kelas }}

{{ $student->disabilityType->code ?? '-' }} {{ $student->disabilityType->name ?? '-' }}

Informasi Tambahan

{{ $school->name }}

{{ $school->npsn }}

@if($student->is_active) Aktif @else Tidak Aktif @endif


{{ $student->created_at->format('d F Y H:i') }}

{{ $student->updated_at->format('d F Y H:i') }}

Foto Siswa
@if($student->photo) {{ $student->nama }} @else

Foto belum tersedia

@endif
@endsection