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

@@ -77,9 +77,9 @@ public function settings(Request $request): View|Response
$hasBarobillLogin = false;
if ($barobillMember) {
try {
$hasBarobillLogin = !empty($barobillMember->barobill_id) && !empty($barobillMember->barobill_pwd);
$hasBarobillLogin = ! empty($barobillMember->barobill_id) && ! empty($barobillMember->barobill_pwd);
} catch (\Throwable $e) {
$hasBarobillLogin = !empty($barobillMember->barobill_id) && !empty($barobillMember->getRawOriginal('barobill_pwd'));
$hasBarobillLogin = ! empty($barobillMember->barobill_id) && ! empty($barobillMember->getRawOriginal('barobill_pwd'));
}
}
@@ -179,8 +179,8 @@ public function searchTradingPartners(Request $request): JsonResponse
if ($keyword) {
$query->where(function ($q) use ($keyword) {
$q->where('name', 'like', "%{$keyword}%")
->orWhere('biz_no', 'like', "%{$keyword}%")
->orWhere('manager', 'like', "%{$keyword}%");
->orWhere('biz_no', 'like', "%{$keyword}%")
->orWhere('manager', 'like', "%{$keyword}%");
});
}