@extends('layouts.app') @push('datatable-styles') @include('sections.datatable_css') @endpush @section('filter-section')
@lang('app.month')
@foreach ($months as $month)
iteration) selected @endif value="{{ $loop->iteration }}">{{ ucfirst($month) }}
@endforeach
@lang('app.year')
@foreach ($years as $year)
{{ $year }}
@endforeach
@lang('app.clearFilters')
@endsection @php $addPermission = user()->permission('add_holiday'); @endphp @section('content')
@if ($addPermission == 'all' || $addPermission == 'added')
@lang('modules.holiday.addNewHoliday')
@lang('modules.holiday.markSunday')
@endif
@lang('app.selectAction')
@lang('app.delete')
{!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!}
@endsection @push('scripts') @include('sections.datatable_js') @endpush