@extends('user.layout') @section('title') {{__('user.My Orders')}} @endsection @section('user-dashboard')
topland

{{ $order->user->name }}

{{ $order->user->email }}

@if ($order->user->phone)

{{ $order->user->phone }}

@endif @if ($order->user->address)

{{ $order->user->address }}

@endif

{{__('user.Order Id')}}: {{ $order->order_id }}

{{__('user.Amount')}}: {{ $order->currency_icon }}{{ $order->amount_real_currency }}

@if ($order->payment_method)

{{__('user.Payment')}}: {{ $order->payment_method }}

@endif @if ($order->transaction_id)

{{__('user.Transaction')}}: {!! clean(nl2br(e($order->transaction_id))) !!}

@endif
{{__('user.Package')}} {{__('user.Purchase Date')}} {{__('user.Expired Date')}} {{__('user.Amount')}}
{{ $order->package->package_name }} {{ $order->purchase_date }} {{ $order->expired_date == null ? 'Unlimited' :$order->expired_date }} {{ $order->currency_icon }}{{ $order->amount_real_currency }}
{{__('user.Print')}}
@endsection