@extends("front/layout.master") @php $user = Auth::user(); $sellerac = App\Store::where('user_id','=', $user->id)->first(); @endphp @section('title',__('staticwords.MyFailedTrancations').' | ') @section("body")
@include('user.sidebar')
{{ __('staticwords.MyFailedTranscations') }} ({{ auth()->user()->failedtxn->count() }})

@foreach($failedtranscations as $key=> $ftxn)

{{ $key+1 }}.

{{ __('TXN ID') }}:{{ $ftxn->txn_id }}

{{ __('Time') }}:{{ date('d-m-Y h:i A',strtotime($ftxn->created_at)) }}


@endforeach
{!! $failedtranscations->links() !!}
@endsection @section('script') @endsection