@extends('layouts.admin') @section('title', 'Failed Payouts') @section('header', 'Failed Payouts') @section('content')
@forelse($failedPayouts as $failed) @empty @endforelse
PayoutGatewayErrorRetriesNext Retry
#{{ $failed->payout_id }} {{ ucfirst($failed->gateway ?? '-') }} {{ $failed->error_message }} {{ $failed->retry_count }} {{ $failed->next_retry_at?->format('d M Y h:i A') ?? '-' }} @if($failed->payout) @endif
No failed payouts.
{{ $failedPayouts->links() }}
@endsection