style: Pint 포맷팅 적용
This commit is contained in:
@@ -9,7 +9,6 @@
|
||||
use App\Services\GoogleCloudService;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Str;
|
||||
use Illuminate\View\View;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
|
||||
@@ -158,6 +158,7 @@ public function bulkStore(Request $request): JsonResponse
|
||||
|
||||
if ($exists) {
|
||||
$skipped++;
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
@@ -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