style: Pint 포맷팅 적용
This commit is contained in:
@@ -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}%");
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user