@extends('siswa.layout') @section('content')

{{-- HEADER --}}
{{-- AVATAR --}}
{{-- LIGHTBOX --}} {{-- NAMA --}}

{{ $student->name }}

{{-- BADGE --}}
Siswa Aktif Dashboard Profil
{{-- BUTTON --}}
{{-- INFO --}}
{{-- NISN --}}

NISN

{{ $student->nisn }}

{{-- KELAS --}}

Kelas

{{ $student->studentClass->name ?? '-' }}

{{-- JURUSAN --}}

Jurusan

{{ $student->department->name ?? '-' }}

{{-- WALI --}}

Wali Kelas

{{ $student->studentClass->homeroom_teacher->user->name ?? '-' }}

{{-- JENIS KELAMIN --}}

Jenis Kelamin

{{ $student->jenis_kelamin == 'L' ? 'Laki-laki' : ($student->jenis_kelamin == 'P' ? 'Perempuan' : '-') }}

{{-- AGAMA --}}

Agama

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

@endsection