- 모델: BarobillSubscription, BarobillBillingRecord, BarobillMonthlySummary - 서비스: BarobillBillingService (구독/과금 처리 로직) - API 컨트롤러: BarobillBillingController (구독/과금 CRUD) - 뷰: 과금 현황 탭, 구독 관리 탭, 통계 카드, 상세 모달 - 라우트: 웹/API 라우트 추가 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
457 B
PHP
12 lines
457 B
PHP
<!-- 통계 카드 스켈레톤 -->
|
|
@for($i = 0; $i < 5; $i++)
|
|
<div class="bg-white rounded-lg p-6 shadow-sm border border-gray-100 animate-pulse">
|
|
<div class="flex items-start justify-between mb-2">
|
|
<div class="h-3 bg-gray-200 rounded w-20"></div>
|
|
<div class="w-8 h-8 bg-gray-200 rounded-lg"></div>
|
|
</div>
|
|
<div class="h-8 bg-gray-200 rounded w-16 mb-1"></div>
|
|
<div class="h-2 bg-gray-100 rounded w-24"></div>
|
|
</div>
|
|
@endfor
|