@extends("front/layout.master") @php $user = Auth::user(); $sellerac = App\Store::where('user_id','=', $user->id)->first(); @endphp @section('title',__('MyFailedTransactions').' | ') @section("body")
• {{ __('staticwords.Hi!') }} {{$user->name}}
@if($user->image !="") @else @endif
{{ $user->email }}

{{ __('staticwords.MemberSince') }}: {{ date('M jS Y',strtotime($user->created_at)) }}


{{ __('staticwords.MyFailedTranscations') }} ({{ $auth->failedtxn->count() }})

@foreach($failedtranscations as $key=> $ftxn) @endforeach
# {{ __('TXN ID') }} {{ __('Time') }}
{{ $key+1 }} {{ $ftxn->txn_id }} {{ date('d-m-Y h:i A',strtotime($ftxn->created_at)) }}
{!! $failedtranscations->links() !!}
@endsection @section('script') @endsection