@php
$currentMonth = date('n');
$currentYear = date('Y');
if ($currentMonth >= 4) {
$fyStart = $currentYear . '-04-01';
$fyEnd = $currentYear + 1 . '-03-31';
$currentFyLabel = $currentYear . '-' . ($currentYear + 1);
} else {
$fyStart = $currentYear - 1 . '-04-01';
$fyEnd = $currentYear . '-03-31';
$currentFyLabel = $currentYear - 1 . '-' . $currentYear;
}
@endphp