@extends('dashboard.layouts.app') @section('title', 'Detail Data Sekolah') @section('content')
NPSN: {{ $sekolah->npsn }}
Nama: {{ $sekolah->nama_sekolah }}
Jenjang: {{ ucfirst($sekolah->jenjang) }}
Status: {{ ucfirst($sekolah->status) }}
Akreditasi: {{ strtoupper($sekolah->akreditasi) }}
{{ $sekolah->alamat }}
Kecamatan: {{ $sekolah->kecamatan->nama_kecamatan }}
Desa: {{ $sekolah->desa->nama_desa }}
Telepon: {{ $sekolah->telepon ?: '-' }}
Email: {{ $sekolah->email ?: '-' }}
Website: {{ $sekolah->website ?: '-' }}
Tahun Berdiri: {{ $sekolah->tahun_berdiri }}
{{ $sekolah->kepala_sekolah }}