2026-01-12 13:51:45 +09:00

31 lines
977 B
PHP

@php
$pageTitle = '이용내역';
$pageDesc = '구매 → 결제 → 발송 상태를 확인할 수 있어요.';
$breadcrumbs = [
['label' => '홈', 'url' => url('/')],
['label' => '마이페이지', 'url' => url('/mypage/info')],
['label' => '이용내역', 'url' => url()->current()],
];
$mypageActive = 'usage';
@endphp
@extends('web.layouts.subpage')
@section('title', '이용내역 | PIN FOR YOU')
@section('meta_description', 'PIN FOR YOU 마이페이지 이용내역 입니다. 구매/결제/발송 내역을 확인하세요.')
@section('canonical', url('/mypage/usage'))
@section('subcontent')
<div class="mypage-usage-page">
@include('web.partials.content-head', [
'title' => '이용내역',
'desc' => '기간별로 내역을 확인할 수 있습니다.'
])
{{-- TODO: 내용 추후 구현 --}}
@include('web.partials.mypage-quick-actions')
</div>
@endsection