@extends('admin.layout.master')
@section('content')
@include('flash-message')
| # |
{{__('obs.name')}} |
{{__('obs.date')}} |
{{__('obs.end_date')}} |
{{__('obs.total_days')}} |
{{-- Depend On Moon | --}}
{{__('obs.description')}} |
{{__('obs.status')}} |
{{__('obs.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)
{{__('obs.active')}}
|
@else
{{__('obs.inactive')}}
|
@endif
{{-- --}}
|
@endforeach
@endif
@include('payroll.admin.holidays.form.add_holiday')
@endsection
@section('script')
@endsection