From 71bf1fd0428eef66984eea52ecdfc2fe6d2c7d6c Mon Sep 17 00:00:00 2001 From: pro Date: Fri, 23 Jan 2026 09:53:23 +0900 Subject: [PATCH] =?UTF-8?q?fix:=EC=A0=84=EC=9E=90=EC=84=B8=EA=B8=88?= =?UTF-8?q?=EA=B3=84=EC=82=B0=EC=84=9C=20=ED=85=8C=EB=84=8C=ED=8A=B8=20?= =?UTF-8?q?=EC=B9=B4=EB=93=9C=EB=A5=BC=20React=20=EC=99=B8=EB=B6=80?= =?UTF-8?q?=EB=A1=9C=20=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - React JSX 내부의 Blade 코드가 Tailwind 클래스와 충돌하는 문제 해결 - 테넌트 정보 카드를 @section('content') 내 Blade 코드로 이동 - className → class로 변경하여 정상 렌더링 Co-Authored-By: Claude Opus 4.5 --- resources/views/barobill/etax/index.blade.php | 102 +++++++++--------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/resources/views/barobill/etax/index.blade.php b/resources/views/barobill/etax/index.blade.php index 3fdb06d5..de0d7215 100644 --- a/resources/views/barobill/etax/index.blade.php +++ b/resources/views/barobill/etax/index.blade.php @@ -3,6 +3,57 @@ @section('title', '전자세금계산서') @section('content') + +@if($currentTenant) +
+
+
+
+ + + +
+
+
+ T-ID: {{ $currentTenant->id }} + @if($currentTenant->id == 1) + 파트너사 + @endif +
+

{{ $currentTenant->company_name }}

+
+
+ @if($barobillMember) +
+
+

사업자번호

+

{{ $barobillMember->biz_no }}

+
+
+

대표자

+

{{ $barobillMember->ceo_name ?? '-' }}

+
+
+

담당자

+

{{ $barobillMember->manager_name ?? '-' }}

+
+
+

바로빌 ID

+

{{ $barobillMember->barobill_id }}

+
+
+ @else +
+ + + + 바로빌 회원사 미연동 +
+ @endif +
+
+@endif +
@endsection @@ -548,57 +599,6 @@ return (
- {/* 현재 테넌트 정보 카드 */} - @if($currentTenant) -
-
-
-
- - - -
-
-
- T-ID: {{ $currentTenant->id }} - @if($currentTenant->id == 1) - 파트너사 - @endif -
-

{{ $currentTenant->company_name }}

-
-
- @if($barobillMember) -
-
-

사업자번호

-

{{ $barobillMember->biz_no }}

-
-
-

대표자

-

{{ $barobillMember->ceo_name ?? '-' }}

-
-
-

담당자

-

{{ $barobillMember->manager_name ?? '-' }}

-
-
-

바로빌 ID

-

{{ $barobillMember->barobill_id }}

-
-
- @else -
- - - - 바로빌 회원사 미연동 -
- @endif -
-
- @endif - {/* Page Header */}