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

{{ __('staticwords.MyFailedTranscations') }}

{{ auth()->user()->failedtxn->count() }} {{ __('failed transactions') }}

@if(count($failedtranscations) > 0)
@foreach($failedtranscations as $key => $ftxn) @endforeach
# {{ __('TXN ID') }} {{ __('Time') }}
{{ $failedtranscations->firstItem() + $key }} {{ $ftxn->txn_id }} {{ date('d M Y, h:i A', strtotime($ftxn->created_at)) }}
{!! $failedtranscations->links() !!}
@else

{{ __('No failed transactions') }}

{{ __("All your payments are going through smoothly.") }}

@endif
@include('front.partials.change-password-modal') @endsection @section('script') @endsection