@extends('admin.layout.master')
@section('home')
| # |
Name |
Start Date |
End Date |
Total Days |
Depend On Moon |
Description |
Status |
Action |
@php($i = 1)
@if (!empty($allhoilday))
@foreach ($allhoilday as $item)
| {{ $i++ }} |
{{ $item->name }} |
{{ $item->start_date }} |
{{ $item->end_date }} |
{{ $item->total_days }} |
@if ($item->depend_on == 1)
Yes |
@elseif($item->depend_on == 2)
Not |
@endif
{{ $item->description }} |
@if ($item->status == 1)
Active
|
@else
Inactive
|
@endif
|
@endforeach
@endif
@include('payroll.admin.holidays.form.add_holiday')
@endsection