@extends('user.layouts') @section('css') @endsection @section('content')

{{ sysConfig('website_name') }}

{{ trans('user.invoice.detail') }}

{{ trans('model.order.id') }} :{{ $order->sn }}

{{ 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('user.shop.service') }} {{ trans('user.shop.description') }} {{ trans('user.shop.price') }} {{ trans('user.shop.quantity') }} {{ trans('model.coupon.attribute') }} {{ trans('user.shop.total') }} {{ trans('common.status.attribute') }}

{{ $order->goods->name ?? trans('user.recharge_credit') }}

@if ($order->goods) {{ trans('common.available_date') }} {{ $order->goods->days }} {{ trans_choice('common.days.attribute', 1) }}
@if ($order->goods->type === 2) {{ $order->goods->traffic_label }} {{ trans('user.attribute.data') }}/{{ ucfirst(trans('validation.attributes.month')) }} @else {{ $order->goods->traffic_label }} {{ trans('user.attribute.data') }}/ {{ $order->goods->days }} {{ trans_choice('common.days.attribute', 1) }} @endif @else {{ trans('user.recharge_credit') }} @endif
{{ $order->origin_amount_tag }} 1 {{ $order->coupon->name ?? trans('common.none') }} {{ $order->amount_tag }} {!! $order->status_label !!}
@endsection @section('javascript') @endsection