- 바로빌본사 → 바로빌로 이름 변경 - 하위메뉴 추가: 설정, 전자세금계산서, 계좌조회, 카드사용내역, 홈텍스매입/매출, 사용량조회 - 설정 페이지 구현 (이메일, 동기화, API, 알림 설정) - 나머지 메뉴는 준비중 페이지로 생성
27 lines
1.2 KiB
PHP
27 lines
1.2 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', '카드사용내역')
|
|
|
|
@section('content')
|
|
<div class="flex flex-col h-full">
|
|
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-center gap-4 mb-6">
|
|
<div>
|
|
<h1 class="text-2xl font-bold text-gray-800">카드사용내역</h1>
|
|
<p class="text-sm text-gray-500 mt-1">등록된 카드의 사용 내역 조회</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex-1 flex items-center justify-center">
|
|
<div class="text-center">
|
|
<div class="w-24 h-24 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
|
|
<svg class="w-12 h-12 text-blue-500" 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>
|
|
</div>
|
|
<h2 class="text-xl font-semibold text-gray-800 mb-2">준비중입니다</h2>
|
|
<p class="text-gray-500">카드사용내역 조회 기능이 곧 제공됩니다.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|