@extends('layouts.app') @section('content')

{{trans('lang.user_wallet_transaction_plural')}}

@if($id!='')
@else @endif
@if(count($transaction) > 0) @foreach($transaction as $data) @if($data->image) @else @endif @endforeach @else @endif
{{ trans('lang.transaction_id')}} {{ trans('lang.users')}} {{trans('lang.amount')}} {{trans('lang.date')}} {{trans('lang.payment_method')}} {{trans('lang.payment_status')}}
{{ $data->id }} {{ $data->firstname }} {{ $data->lastname }} @if($currency->symbol_at_right=="true") @if($data->deduction_type=="0") (-{{number_format($data->amount,$currency->decimal_digit)."".$currency->symbole }}) @else {{number_format($data->amount,$currency->decimal_digit)."".$currency->symbole }} @endif @else @if($data->deduction_type=="0") (-{{ $currency->symbole."".number_format($data->amount,$currency->decimal_digit) }}) @else {{ $currency->symbole."".number_format($data->amount,$currency->decimal_digit) }} @endif @endif {{ date('d F Y',strtotime($data->creer))}} {{ date('h:i A',strtotime($data->creer))}} image{{ $data->payment_method}} @if($data->payment_status == 'success') {{ $data->payment_status }} @elseif($data->payment_status == 'pending') {{ $data->payment_status }} @elseif($data->payment_status == 'canceled') {{ $data->payment_status }} @elseif($data->payment_status == 'rufund success') {{ $data->payment_status }} @endif
{{trans("lang.no_result")}}
{{ $transaction->links('pagination.pagination') }}
@endsection @section('scripts') @endsection