Files
sam-manage/resources/views/barobill/usage/index.blade.php
pro f55d30e867 feat:바로빌 메뉴 그룹 및 하위메뉴 추가
- 바로빌본사 → 바로빌로 이름 변경
- 하위메뉴 추가: 설정, 전자세금계산서, 계좌조회, 카드사용내역, 홈텍스매입/매출, 사용량조회
- 설정 페이지 구현 (이메일, 동기화, API, 알림 설정)
- 나머지 메뉴는 준비중 페이지로 생성
2026-01-22 15:27:01 +09:00

27 lines
1.3 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-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
<svg class="w-12 h-12 text-indigo-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z" />
</svg>
</div>
<h2 class="text-xl font-semibold text-gray-800 mb-2">준비중입니다</h2>
<p class="text-gray-500">사용량조회 기능이 제공됩니다.</p>
</div>
</div>
</div>
@endsection