@extends('layouts.layout-mypage') @section("class", "first") @section('mypage-content')
결제/배송

*결제내역은 최대 5년까지 조회하실 수 있습니다.

@if( count($payments) == 0)

결제/배송내역이 없습니다.

@else @foreach ($payments as $item) @php $actualPrice = $item->getActualPrice(); @endphp
  • 주문번호

    {{ $item->payment_no }}

    id) }}" class="detail">주문 상세
  • 서비스

    @if ( $item->service != null )

    @endif
  • 주문내역

    $item->enrollsCnt > 1])>{{ $item->productName }}

    @if ($item->enrollsCnt > 1) @endif
  • 상태

    @if ( $status != 'CANCELED' && $item->total_price != $actualPrice) 부분취소 @else {{ $status[$item->status] }} @endif
  • 결제액

    {{ number_format($actualPrice) }}원
  • 결제일

    {{ date("y.m.d", strtotime($item->paid_at)) }}
  • 교재배송

    @php $delivery = $item->getDelivery(); @endphp @if ( $delivery ) @if ( $delivery->company != null && $delivery->reference_id != null ) @php $url = $delivery->company == 'DOM' ? 'https://trace.cjlogistics.com/web/detail.jsp?slipno=' . $delivery->reference_id : ""; @endphp 배송조회 @else 배송전 @endif @else - @endif
  • 영수증

@endforeach @endif
환불신청 방법 및 규정
@endsection @section("mypage-script") @endsection