@extends('layouts.ambassador') @section('ambassador-content')

Mes commissions

Historique des payouts

Total gagné

{{ number_format($stats['total_earned'], 2, ',', ' ') }}€

Déjà payé

{{ number_format($stats['total_paid'], 2, ',', ' ') }}€

Non payé

{{ number_format($stats['unpaid'], 2, ',', ' ') }}€

En attente

{{ number_format($stats['pending'], 2, ',', ' ') }}€

@forelse($commissions as $c) @empty @endforelse
Date Prestataire Type Transaction Taux Commission Statut
{{ $c->created_at->format('d/m/Y') }} {{ $c->prestataire->company_name ?? 'N/A' }} {{ ucfirst($c->order_type) }} {{ number_format($c->base_amount, 2, ',', ' ') }}€ {{ $c->commission_rate }}% {{ number_format($c->commission_amount, 2, ',', ' ') }}€ @if($c->status === 'paid') Payé @elseif($c->status === 'pending') En attente @elseif($c->status === 'cancelled') Annulé @else {{ ucfirst($c->status) }} @endif
Aucune commission.
@if($commissions->hasPages())
{{ $commissions->withQueryString()->links() }}
@endif
@endsection