@extends('layouts.app') @section('title', 'Libur Rutin') @php $months = [ 1 => 'Januari', 2 => 'Februari', 3 => 'Maret', 4 => 'April', 5 => 'Mei', 6 => 'Juni', 7 => 'Juli', 8 => 'Agustus', 9 => 'September', 10 => 'Oktober', 11 => 'November', 12 => 'Desember', ]; @endphp @section('content')

Libur Rutin

Kelola libur nasional dan rutin yang berlaku untuk semua sekolah.

@if (session('status'))
{{ session('status') }}
@endif
@forelse ($holidays as $holiday) @empty @endforelse
Nama Tanggal Tipe Status Aksi
{{ $holiday->name }} {{ $holiday->day ? $holiday->day . ' ' : '' }}{{ $months[$holiday->month] ?? '' }} @if ($holiday->calendar_type === 'hijriah') (Hijriah) @endif {{ $holiday->calendar_type }} @if ($holiday->is_active) Aktif @else Nonaktif @endif
@csrf @method('DELETE')
Belum ada libur rutin.
@endsection @push('scripts') @endpush