@extends('statepanel.layout.master')
@section('content')
@foreach ($months as $key => $value)
@php $currentdate = \App\Helper\CommonFunction::getLastAndFirstDay($key);@endphp
@if ($key < $currentMonth)
{{ ucfirst(strtolower($value)) }} {{ $currentdate['firstDay'] }} to
{{ $currentdate['lastDay'] }} |
PDF |
Excel |
CSV
|
@else
@endif
@endforeach
@endsection