@extends('layouts.app') @section('title', '재무 대시보드') @section('content')
총 잔액
{{ number_format($accountSummary['total_balance']) }}원
{{ $accountSummary['total_accounts'] }}개 계좌
예정 수입
+{{ number_format($monthlySummary['income']['pending']) }}원
이번 달 예정
예정 지출
-{{ number_format($monthlySummary['expense']['pending']) }}원
이번 달 예정
7일내 일정
{{ $scheduleSummary['upcoming_7days'] }}건
처리 필요
수입
+{{ number_format($monthlySummary['income']['total']) }}원
완료: {{ number_format($monthlySummary['income']['completed']) }}원 / 예정: {{ number_format($monthlySummary['income']['pending']) }}원
지출
-{{ number_format($monthlySummary['expense']['total']) }}원
완료: {{ number_format($monthlySummary['expense']['completed']) }}원 / 예정: {{ number_format($monthlySummary['expense']['pending']) }}원
순수익
{{ $monthlySummary['net'] >= 0 ? '+' : '' }}{{ number_format($monthlySummary['net']) }}원
총 {{ $monthlySummary['total_count'] }}건 일정
{{ $account->account_name ?: $account->bank_name }}
{{ $account->account_number }}
{{ number_format($account->balance) }}원
{{ $account->account_type }}
{{ $schedule->title }}
{{ $schedule->scheduled_date->format('m/d') }} @if($schedule->counterparty) - {{ $schedule->counterparty }} @endif
{{ $schedule->schedule_type === 'income' ? '+' : '-' }}{{ number_format($schedule->amount) }}원
{{ $schedule->status === 'pending' ? '대기' : ($schedule->status === 'completed' ? '완료' : '취소') }}| 날짜 | 은행 | 적요 | 상대방 | 입금 | 출금 | 잔액 |
|---|---|---|---|---|---|---|
| {{ $transDate->format('m/d') }} | {{ $tx->bank_name ?? '-' }} | {{ Str::limit($tx->summary, 15) }} | {{ Str::limit($tx->cast, 10) }} | {{ $tx->deposit > 0 ? '+' . number_format($tx->deposit) : '-' }} | {{ $tx->withdraw > 0 ? '-' . number_format($tx->withdraw) : '-' }} | {{ number_format($tx->balance) }}원 |
| 최근 7일간 거래내역이 없습니다. | ||||||
| 사용일시 | 카드번호 | 공제 | 가맹점 | 내역 | 금액 | 계정과목 |
|---|---|---|---|---|---|---|
| {{ $useDate->format('m/d') }} {{ $useTime }} | ****-{{ $cardLast4 }} | {{ $isDeductible ? '공제' : '불공' }} | {{ Str::limit($card->merchant_name, 25) }} | {{ Str::limit($card->description ?: '-', 25) }} | {{ $isCancel ? '-' : '' }}{{ number_format($card->approval_amount) }} | {{ Str::limit($card->account_name ?: '-', 10) }} |
| 최근 7일간 카드 사용내역이 없습니다. | ||||||