@extends('layouts.app')
@push('datatable-styles')
@include('sections.datatable_css')
@endpush
@section('filter-section')
@lang('app.employee')
@lang('app.clearFilters')
@endsection
@section('content')
@php
$startOfYear = company()->leaves_start_from == 'joining_date' ? now()->startOfYear() : now()->startOfYear()->month(company()->year_starts_from);
$endOfYear = $startOfYear->copy()->addMonths(11);
@endphp
@lang('messages.leaveQuotaReport', [
'start' => $startOfYear->format('M Y'),
'end' => $endOfYear->format('M Y')
])
{!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!}
@endsection
@push('scripts')
@include('sections.datatable_js')
@endpush