@extends('layouts.index')
@section('title')
Public Holiday Reference
@endsection
@section('css')
@endsection
@section('content')
Public Holiday Reference
Public Holiday Reference
| No. |
Description |
Date |
Status |
Option |
@foreach ($list as $item)
| last) id="lastCount" @endif>{{ $loop->iteration }} |
{{ $item->keterangan }} |
{{ $item->tanggal_awal }} |
@php
if ($item->status == 'Y') {
$status = 'Active';
$statusColor = 'success';
} else {
$status = 'Inactive';
$statusColor = 'danger';
}
@endphp
{{ $status }}
|
|
@endforeach
Add Public Holiday Reference
Edit Public Holiday Reference
@endsection
@section('js')
@endsection