@extends('admin.layout.master') @section('home')

Holiday List
@php($i = 1) @if (!empty($allhoilday)) @foreach ($allhoilday as $item) @if ($item->depend_on == 1) @elseif($item->depend_on == 2) @endif @if ($item->status == 1) @else @endif @endforeach @endif
# Name Start Date End Date Total Days Depend On Moon Description Status Action
{{ $i++ }} {{ $item->name }} {{ $item->start_date }} {{ $item->end_date }} {{ $item->total_days }}YesNot{{ $item->description }}

Active

Inactive

@include('payroll.admin.holidays.form.add_holiday') @endsection