style: Pint 포맷팅 적용
This commit is contained in:
@@ -38,10 +38,10 @@ public function index(Request $request): View
|
||||
|
||||
// 날짜 범위 필터
|
||||
if ($request->filled('date_from')) {
|
||||
$query->where('created_at', '>=', $request->date_from . ' 00:00:00');
|
||||
$query->where('created_at', '>=', $request->date_from.' 00:00:00');
|
||||
}
|
||||
if ($request->filled('date_to')) {
|
||||
$query->where('created_at', '<=', $request->date_to . ' 23:59:59');
|
||||
$query->where('created_at', '<=', $request->date_to.' 23:59:59');
|
||||
}
|
||||
|
||||
$alerts = $query->paginate(50)->withQueryString();
|
||||
@@ -95,4 +95,4 @@ public function markAllAsRead(): Response
|
||||
|
||||
return response('', 200, ['HX-Refresh' => 'true']);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user