Merge pull request #3217 from CihanSenturk/fix-date-filter-long-month-issue
The issue of displaying long months in the date filter has been resol…
This commit is contained in:
commit
bc70c4f4e2
|
|
@ -238,7 +238,7 @@ trait DateTime
|
|||
],
|
||||
trans('general.date_range.previous_month') => [
|
||||
'start' => $financial_month->copy()->getStartDate()->subMonth()->toDateString(),
|
||||
'end' => $financial_month->copy()->getEndDate()->subMonth()->toDateString(),
|
||||
'end' => $financial_month->copy()->getEndDate()->subMonth()->endOfMonth()->toDateString(),
|
||||
],
|
||||
trans('general.date_range.previous_quarter') => [
|
||||
'start' => $financial_quarter->copy()->getStartDate()->subQuarter()->toDateString(),
|
||||
|
|
|
|||
Loading…
Reference in New Issue