@extends('_layout')
@section('title', sysConfig('website_name'))
@section('body_class','page-login-v3 layout-full')
@section('layout_css')
@endsection
@section('layout_content')
{{trans('user.invoice.detail')}}
-
订单原价:{{ $order->origin_amount_tag }}
-
实际支付金额:{{ $order->origin_amount_tag }}
-
{{ trans('user.payment_method') }}:
{{ $order->pay_way === 1 ? trans('user.shop.pay_credit') : trans('user.shop.pay_online') }}
-
{{ trans('user.bought_at') }}: {{ $order->created_at }}
@if($order->expired_at)
-
{{ trans('common.expired_at') }}: {{ $order->expired_at }}
@endif
-
{{ trans('common.status') }}:{!! $order->status_label !!}
用户信息
-
{{ trans('validation.attributes.nickname') }}:{{ $user->nickname }}
-
{{ trans('validation.attributes.username') }}:{{ $user->username }}
-
{{ trans('user.attribute.data') }}:{{ flowAutoShow($user->used_traffic) }} / {{ flowAutoShow($user->transfer_enable) }}
-
余额:{{ $user->credit }}
-
过期时间:{{ $user->expiration_date }}
@endsection