@extends('layouts.admin-modern') @section('title', 'Versements prestataires') @section('content')
Total versements: {{ $payouts->total() ?? 0 }}
Rafraîchir

Créer un versement manuel

@csrf
@forelse($payouts as $p) @empty @endforelse
ID Prestataire Montant Statut Date Actions
{{ $p->id }} {{ $p->prestataire_name ?? '—' }} {{ number_format($p->amount, 2, ',', ' ') }} € {{ ucfirst($p->status) }} {{ $p->created_at }} @if($p->status === 'pending')
@csrf
@csrf
@else @endif
Aucun versement.
{{ $payouts->appends(request()->query())->links() }}
@endsection @section('scripts') @endsection