fix:계좌관리 → 보유계좌관리 메뉴명 변경

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-06 13:53:46 +09:00
parent cd3b79d67e
commit 6520923def
3 changed files with 4 additions and 4 deletions

View File

@@ -1,13 +1,13 @@
@extends('layouts.app')
@section('title', '계좌관리')
@section('title', '보유계좌관리')
@section('content')
<div class="container mx-auto px-4 py-6">
{{-- 페이지 헤더 --}}
<div class="flex flex-col lg:flex-row lg:justify-between lg:items-center gap-4 mb-6">
<div>
<h1 class="text-2xl font-bold text-gray-800">계좌관리</h1>
<h1 class="text-2xl font-bold text-gray-800">보유계좌관리</h1>
<p class="text-sm text-gray-500 mt-1">{{ now()->format('Y년 n월 j일') }} 현재</p>
</div>
<div class="flex flex-wrap items-center gap-2 sm:gap-3">

View File

@@ -16,7 +16,7 @@ class="inline-flex items-center gap-2 px-4 py-2 bg-gray-600 hover:bg-gray-700 te
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z"/>
</svg>
계좌관리
보유계좌관리
</a>
<a href="{{ route('finance.fund-schedule') }}"
class="inline-flex items-center gap-2 px-4 py-2 bg-blue-600 hover:bg-blue-700 text-white text-sm font-medium rounded-lg transition-colors">

View File

@@ -725,7 +725,7 @@
// 대시보드
Route::get('/dashboard', [\App\Http\Controllers\Finance\FinanceDashboardController::class, 'index'])->name('dashboard');
// 계좌관리 (실제 구현)
// 보유계좌관리 (실제 구현)
Route::prefix('accounts')->name('accounts.')->group(function () {
Route::get('/', [\App\Http\Controllers\Finance\BankAccountController::class, 'index'])->name('index');
Route::get('/create', [\App\Http\Controllers\Finance\BankAccountController::class, 'create'])->name('create');