feat: Phase 8 SaaS 확장 - 구독관리/결제내역 API 추가

- 사용량 조회 API (GET /subscriptions/usage)
- 데이터 내보내기 API (POST/GET /subscriptions/export)
- 결제 명세서 API (GET /payments/{id}/statement)
- DataExport 모델 및 마이그레이션 추가
This commit is contained in:
2025-12-19 16:53:49 +09:00
parent 0d49e4cc75
commit abaff1286e
13 changed files with 868 additions and 1 deletions

View File

@@ -346,4 +346,25 @@
'suspended' => '사용 중지가 완료되었습니다.',
'agreements_updated' => '약관 동의 정보가 수정되었습니다.',
],
// 구독 관리
'subscription' => [
'cancelled' => '구독이 취소되었습니다.',
'renewed' => '구독이 갱신되었습니다.',
'suspended' => '구독이 일시정지되었습니다.',
'resumed' => '구독이 재개되었습니다.',
],
// 데이터 내보내기
'export' => [
'requested' => '내보내기 요청이 접수되었습니다.',
'completed' => '내보내기가 완료되었습니다.',
],
// 결제 관리
'payment' => [
'completed' => '결제가 완료되었습니다.',
'cancelled' => '결제가 취소되었습니다.',
'refunded' => '환불이 완료되었습니다.',
],
];