From c7fc872de7a45d1443d58987ccde27b511b3a5ac Mon Sep 17 00:00:00 2001 From: pro Date: Wed, 21 Jan 2026 19:10:44 +0900 Subject: [PATCH] =?UTF-8?q?feat:=EC=9E=AC=EB=AC=B4=EA=B4=80=EB=A6=AC=20Rea?= =?UTF-8?q?ct=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=B6=94=EA=B0=80=20(VAT,?= =?UTF-8?q?=20=EB=AF=B8=EC=88=98=EA=B8=88,=20=EB=AF=B8=EC=A7=80=EA=B8=89?= =?UTF-8?q?=EA=B8=88=20=EB=93=B1=2020=EA=B0=9C)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../finance/account-transactions.blade.php | 242 ++++ .../views/finance/card-transactions.blade.php | 851 +++++++++++++ .../views/finance/consulting-fee.blade.php | 262 ++++ .../views/finance/corporate-cards.blade.php | 600 ++++++++++ .../finance/corporate-vehicles.blade.php | 262 ++++ .../finance/customer-settlement.blade.php | 257 ++++ resources/views/finance/customers.blade.php | 247 ++++ resources/views/finance/daily-fund.blade.php | 1052 +++++++++++++++++ resources/views/finance/expense.blade.php | 263 +++++ resources/views/finance/income.blade.php | 259 ++++ resources/views/finance/partners.blade.php | 242 ++++ resources/views/finance/payables.blade.php | 337 ++++++ resources/views/finance/purchase.blade.php | 268 +++++ resources/views/finance/receivables.blade.php | 337 ++++++ resources/views/finance/refunds.blade.php | 347 ++++++ .../views/finance/sales-commission.blade.php | 264 +++++ resources/views/finance/sales.blade.php | 266 +++++ .../views/finance/subscription.blade.php | 268 +++++ resources/views/finance/vat.blade.php | 362 ++++++ .../finance/vehicle-maintenance.blade.php | 259 ++++ 20 files changed, 7245 insertions(+) create mode 100644 resources/views/finance/account-transactions.blade.php create mode 100644 resources/views/finance/card-transactions.blade.php create mode 100644 resources/views/finance/consulting-fee.blade.php create mode 100644 resources/views/finance/corporate-cards.blade.php create mode 100644 resources/views/finance/corporate-vehicles.blade.php create mode 100644 resources/views/finance/customer-settlement.blade.php create mode 100644 resources/views/finance/customers.blade.php create mode 100644 resources/views/finance/daily-fund.blade.php create mode 100644 resources/views/finance/expense.blade.php create mode 100644 resources/views/finance/income.blade.php create mode 100644 resources/views/finance/partners.blade.php create mode 100644 resources/views/finance/payables.blade.php create mode 100644 resources/views/finance/purchase.blade.php create mode 100644 resources/views/finance/receivables.blade.php create mode 100644 resources/views/finance/refunds.blade.php create mode 100644 resources/views/finance/sales-commission.blade.php create mode 100644 resources/views/finance/sales.blade.php create mode 100644 resources/views/finance/subscription.blade.php create mode 100644 resources/views/finance/vat.blade.php create mode 100644 resources/views/finance/vehicle-maintenance.blade.php diff --git a/resources/views/finance/account-transactions.blade.php b/resources/views/finance/account-transactions.blade.php new file mode 100644 index 00000000..3d24b253 --- /dev/null +++ b/resources/views/finance/account-transactions.blade.php @@ -0,0 +1,242 @@ +@extends('layouts.app') + +@section('title', '계좌거래내역') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/card-transactions.blade.php b/resources/views/finance/card-transactions.blade.php new file mode 100644 index 00000000..4e2890f4 --- /dev/null +++ b/resources/views/finance/card-transactions.blade.php @@ -0,0 +1,851 @@ +@extends('layouts.app') + +@section('title', '법인카드 거래내역') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/consulting-fee.blade.php b/resources/views/finance/consulting-fee.blade.php new file mode 100644 index 00000000..f2cc902f --- /dev/null +++ b/resources/views/finance/consulting-fee.blade.php @@ -0,0 +1,262 @@ +@extends('layouts.app') + +@section('title', '상담수수료') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/corporate-cards.blade.php b/resources/views/finance/corporate-cards.blade.php new file mode 100644 index 00000000..5fba401e --- /dev/null +++ b/resources/views/finance/corporate-cards.blade.php @@ -0,0 +1,600 @@ +@extends('layouts.app') + +@section('title', '법인카드 등록/조회') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/corporate-vehicles.blade.php b/resources/views/finance/corporate-vehicles.blade.php new file mode 100644 index 00000000..41e708bd --- /dev/null +++ b/resources/views/finance/corporate-vehicles.blade.php @@ -0,0 +1,262 @@ +@extends('layouts.app') + +@section('title', '법인차량 등록') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/customer-settlement.blade.php b/resources/views/finance/customer-settlement.blade.php new file mode 100644 index 00000000..1b235dc0 --- /dev/null +++ b/resources/views/finance/customer-settlement.blade.php @@ -0,0 +1,257 @@ +@extends('layouts.app') + +@section('title', '고객사별 정산') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/customers.blade.php b/resources/views/finance/customers.blade.php new file mode 100644 index 00000000..411fe31a --- /dev/null +++ b/resources/views/finance/customers.blade.php @@ -0,0 +1,247 @@ +@extends('layouts.app') + +@section('title', '고객사 관리') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/daily-fund.blade.php b/resources/views/finance/daily-fund.blade.php new file mode 100644 index 00000000..7115b665 --- /dev/null +++ b/resources/views/finance/daily-fund.blade.php @@ -0,0 +1,1052 @@ +@extends('layouts.app') + +@section('title', '일일자금일보') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + + +@endpush diff --git a/resources/views/finance/expense.blade.php b/resources/views/finance/expense.blade.php new file mode 100644 index 00000000..4764127f --- /dev/null +++ b/resources/views/finance/expense.blade.php @@ -0,0 +1,263 @@ +@extends('layouts.app') + +@section('title', '지출관리') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/income.blade.php b/resources/views/finance/income.blade.php new file mode 100644 index 00000000..57b87246 --- /dev/null +++ b/resources/views/finance/income.blade.php @@ -0,0 +1,259 @@ +@extends('layouts.app') + +@section('title', '수입관리') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/partners.blade.php b/resources/views/finance/partners.blade.php new file mode 100644 index 00000000..b7e40a8e --- /dev/null +++ b/resources/views/finance/partners.blade.php @@ -0,0 +1,242 @@ +@extends('layouts.app') + +@section('title', '일반 거래처') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/payables.blade.php b/resources/views/finance/payables.blade.php new file mode 100644 index 00000000..d9aa3b88 --- /dev/null +++ b/resources/views/finance/payables.blade.php @@ -0,0 +1,337 @@ +@extends('layouts.app') + +@section('title', '미지급금 관리') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/purchase.blade.php b/resources/views/finance/purchase.blade.php new file mode 100644 index 00000000..daf4f6c8 --- /dev/null +++ b/resources/views/finance/purchase.blade.php @@ -0,0 +1,268 @@ +@extends('layouts.app') + +@section('title', '매입관리') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/receivables.blade.php b/resources/views/finance/receivables.blade.php new file mode 100644 index 00000000..f9d4b2aa --- /dev/null +++ b/resources/views/finance/receivables.blade.php @@ -0,0 +1,337 @@ +@extends('layouts.app') + +@section('title', '미수금 관리') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/refunds.blade.php b/resources/views/finance/refunds.blade.php new file mode 100644 index 00000000..e521022a --- /dev/null +++ b/resources/views/finance/refunds.blade.php @@ -0,0 +1,347 @@ +@extends('layouts.app') + +@section('title', '환불/해지 관리') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/sales-commission.blade.php b/resources/views/finance/sales-commission.blade.php new file mode 100644 index 00000000..6e8beb52 --- /dev/null +++ b/resources/views/finance/sales-commission.blade.php @@ -0,0 +1,264 @@ +@extends('layouts.app') + +@section('title', '영업수수료') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/sales.blade.php b/resources/views/finance/sales.blade.php new file mode 100644 index 00000000..9ce943aa --- /dev/null +++ b/resources/views/finance/sales.blade.php @@ -0,0 +1,266 @@ +@extends('layouts.app') + +@section('title', '매출관리') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/subscription.blade.php b/resources/views/finance/subscription.blade.php new file mode 100644 index 00000000..608f92e8 --- /dev/null +++ b/resources/views/finance/subscription.blade.php @@ -0,0 +1,268 @@ +@extends('layouts.app') + +@section('title', '구독관리') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/vat.blade.php b/resources/views/finance/vat.blade.php new file mode 100644 index 00000000..8c562356 --- /dev/null +++ b/resources/views/finance/vat.blade.php @@ -0,0 +1,362 @@ +@extends('layouts.app') + +@section('title', '부가세 관리') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush diff --git a/resources/views/finance/vehicle-maintenance.blade.php b/resources/views/finance/vehicle-maintenance.blade.php new file mode 100644 index 00000000..72339d3a --- /dev/null +++ b/resources/views/finance/vehicle-maintenance.blade.php @@ -0,0 +1,259 @@ +@extends('layouts.app') + +@section('title', '차량 유지비') + +@push('styles') + +@endpush + +@section('content') +
+@endsection + +@push('scripts') + + + + +@verbatim + +@endverbatim +@endpush