@extends('layouts.user.profile.layout') @section('title') {{ $websiteLang->where('lang_key','order')->first()->custom_text }} @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

{{ $websiteLang->where('lang_key','order_id')->first()->custom_text }}: {{ $order->order_id }}

{{ $websiteLang->where('lang_key','amount')->first()->custom_text }}: {{ $order->currency_icon }}{{ $order->amount_real_currency }}

@if ($order->payment_method)

{{ $websiteLang->where('lang_key','payment')->first()->custom_text }}: {{ $order->payment_method }}

@endif @if ($order->transaction_id)

{{ $websiteLang->where('lang_key','trans_id')->first()->custom_text }}: {!! clean(nl2br(e($order->transaction_id))) !!}

@endif
{{ $websiteLang->where('lang_key','package')->first()->custom_text }} {{ $websiteLang->where('lang_key','purchase_date')->first()->custom_text }} {{ $websiteLang->where('lang_key','expired_date')->first()->custom_text }} {{ $websiteLang->where('lang_key','amount')->first()->custom_text }}
{{ $order->package->package_name }} {{ $order->purchase_date }} {{ $order->expired_date == null ? 'Unlimited' :$order->expired_date }} {{ $order->currency_icon }}{{ $order->amount_real_currency }}
{{ $websiteLang->where('lang_key','print')->first()->custom_text }}
@endsection