@extends('layouts.admin') @section('title', 'Management Profil Sekolah') @section('content')
{{-- Alert Success --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Alert Error --}} @if(session('error'))
{{ session('error') }}
@endif @if ($sekolahs->isEmpty()) {{-- SETUP INITIAL FORM (JIKA BELUM ADA DATA) --}}

Setup Profil Sekolah

Data sekolah belum dikonfigurasi. Silakan lengkapi form berikut untuk memulai.

@csrf

1. Informasi Utama & Media

2. Kontak & Jam Operasional

3. Area & Lokasi Presensi

@else {{-- VIEW & EDIT PROFIL SEKOLAH --}} @php $sekolah = $sekolahs->first(); @endphp
{{-- Header / Hero Image --}}
@if($sekolah->foto_sekolah) Foto Sekolah @else
Foto Gedung Sekolah Belum Diatur
@endif
{{-- Logo & Judul --}}
@if($sekolah->logo_sekolah) Logo @else
NO LOGO
@endif

{{ $sekolah->nama_sekolah }}

Sistem Geofencing Aktif ({{ $sekolah->radius }} Meter)


{{-- TAMPILAN VIEW MODE --}}
Alamat Lengkap

{{ $sekolah->alamat }}

No. Telepon

{{ $sekolah->no_telp ?? '-' }}

Email

{{ $sekolah->email ?? '-' }}

Jam Operasional Masuk

{{ \Carbon\Carbon::parse($sekolah->jam_masuk)->format('H:i') }} WIB

Jam Operasional Keluar

{{ \Carbon\Carbon::parse($sekolah->jam_keluar)->format('H:i') }} WIB

{{-- Side Card Coordinates --}}

Koordinat Maps

Latitude {{ $sekolah->latitude }}
Longitude {{ $sekolah->longitude }}
Radius Jangkauan {{ $sekolah->radius }} Meter
@csrf @method('DELETE')
{{-- TAMPILAN EDIT MODE --}}
@endif
@endsection