From f7a9b8cbdf7f3942fd25e8533118d8dae6de1908 Mon Sep 17 00:00:00 2001 From: sausin Date: Fri, 14 Dec 2018 19:54:05 +0530 Subject: [PATCH] Update index.blade.php --- resources/views/common/dashboard/index.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/common/dashboard/index.blade.php b/resources/views/common/dashboard/index.blade.php index f15277e18..384c53ad1 100644 --- a/resources/views/common/dashboard/index.blade.php +++ b/resources/views/common/dashboard/index.blade.php @@ -265,7 +265,7 @@ ranges: { '{{ trans("reports.this_year") }}': [start, end], '{{ trans("reports.previous_year") }}': [moment('{{ $financial_start }}').subtract(1, 'year'), moment('{{ $financial_start }}').subtract('1', 'days')], - '{{ trans("reports.this_quarter") }}': [moment().subtract(2, 'months').startOf('month'), moment().endOf('month')], + '{{ trans("reports.this_quarter") }}': [moment().startOf('quarter'), moment().endOf('quarter')], '{{ trans("reports.previous_quarter") }}': [moment().subtract(1, 'quarter').startOf('quarter'), moment().subtract(1, 'quarter').endOf('quarter')], '{{ trans("reports.last_12_months") }}': [moment().subtract(11, 'months').startOf('month'), moment().endOf('month')] }