@if ($history->order) @endif @if ($history->transaction) @endif
{{ trans('front::messages.wallet.id') }} {{ $history->id }}
{{ trans('front::messages.wallet.amount') }} {{ trans('front::messages.currency.prefix') }}{{ number_format($history->amount) }}{{ trans('front::messages.currency.suffix') }}
{{ trans('front::messages.wallet.type-of-transaction') }} @if ($history->type == 'deposit') {{ trans('front::messages.wallet.increase-credit') }}
@else {{ trans('front::messages.wallet.decrease-credit') }}
@endif
{{ trans('front::messages.wallet.transaction-date') }} {{ jdate($history->created_at) }}
{{ trans('front::messages.wallet.state') }} @if($history->status == 'success')
{{ trans('front::messages.wallet.successful') }}
@else
{{ trans('front::messages.wallet.unsuccessful') }}
@endif
{{ trans('front::messages.wallet.description') }} {!! $history->description !!}
{{ trans('front::messages.wallet.order-number') }} {{ $history->order->id }}
{{ trans('front::messages.wallet.transaction-number') }} {{ $history->transaction->transId }}
{{ trans('front::messages.wallet.issue-tracking') }} {{ $history->transaction->traceNumber }}