style: Pint 포맷팅 적용

This commit is contained in:
김보곤
2026-02-25 11:45:01 +09:00
parent 68b1622a4e
commit 9a7c548246
199 changed files with 1420 additions and 1083 deletions

View File

@@ -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']);
}
}
}