From 8749ca359f1e7373fb08bee81b7aafe5533f9037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Tue, 3 Feb 2026 21:31:37 +0900 Subject: [PATCH] =?UTF-8?q?feat:=EC=9E=90=EA=B8=88=EA=B3=84=ED=9A=8D?= =?UTF-8?q?=EC=9D=BC=EC=A0=95=20=EB=8B=AC=EB=A0=A5=20=ED=95=AD=EB=AA=A9=20?= =?UTF-8?q?=ED=81=B4=EB=A6=AD=20=EC=8B=9C=20=EB=AA=A8=EB=8B=AC=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 일정 클릭 시 페이지 이동 대신 모달창에서 편집 - 일정 추가 버튼도 모달창으로 변경 - 모달에서 등록/수정/삭제 모두 가능 - ESC 키로 모달 닫기 지원 Co-Authored-By: Claude Opus 4.5 --- .../finance/fund-schedules/index.blade.php | 329 +++++++++++++++++- .../partials/calendar.blade.php | 16 +- 2 files changed, 335 insertions(+), 10 deletions(-) diff --git a/resources/views/finance/fund-schedules/index.blade.php b/resources/views/finance/fund-schedules/index.blade.php index 5ad900f3..3029f30f 100644 --- a/resources/views/finance/fund-schedules/index.blade.php +++ b/resources/views/finance/fund-schedules/index.blade.php @@ -11,13 +11,13 @@

{{ $year }}년 {{ $month }}월 현재

@@ -143,4 +143,329 @@ class="p-2 hover:bg-gray-100 rounded-lg transition-colors"> + +{{-- 일정 편집/등록 모달 --}} + @endsection + +@push('scripts') + +@endpush diff --git a/resources/views/finance/fund-schedules/partials/calendar.blade.php b/resources/views/finance/fund-schedules/partials/calendar.blade.php index 18b74d2f..8d142b90 100644 --- a/resources/views/finance/fund-schedules/partials/calendar.blade.php +++ b/resources/views/finance/fund-schedules/partials/calendar.blade.php @@ -55,21 +55,21 @@ @if($isCurrentMonth && count($daySchedules) === 0) - - + @endif {{-- 일정 목록 --}}
@foreach($daySchedules as $schedule) - - + @endforeach @if($isCurrentMonth && count($daySchedules) > 0) - - + @endif