@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) @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