Skip to content

Commit

Permalink
后台主页的折线图返回过滤时间的最后一天数据
Browse files Browse the repository at this point in the history
  • Loading branch information
none committed Jul 19, 2023
1 parent 2d1ba30 commit e52bdb5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -136,7 +136,7 @@ public function graph(Request $request)

$startAt = Carbon::parse($startAt)->format('Y-m-d');

$endAt = Carbon::parse($endAt)->format('Y-m-d');
$endAt = Carbon::parse($endAt)->format('Y-m-d') . ' 23:59:59';
$endAtCarbon = Carbon::parse($endAt);

// 每日注册学员数量统计
Expand Down

0 comments on commit e52bdb5

Please sign in to comment.