@extends('layouts.ambassador') @section('title', 'Mes commissions') @section('content')
{{ number_format($stats['today'], 2, ',', ' ') }} €
Aujourd'hui
{{ number_format($stats['this_week'], 2, ',', ' ') }} €
Cette semaine
{{ number_format($stats['this_month'], 2, ',', ' ') }} €
Ce mois
{{ number_format($stats['total'], 2, ',', ' ') }} €
Total
{{ number_format($stats['pending'], 2, ',', ' ') }} €
En attente
{{ number_format($stats['payable'], 2, ',', ' ') }} €
Payable
{{ number_format($stats['paid'], 2, ',', ' ') }} €
Versé
Reset
@forelse($commissions as $c) @empty @endforelse
DateTypePrestataireCatégorieMontant commandeMa commissionDispo leStatut
{{ $c->created_at->format('d/m/Y') }} {{ $c->order_type_label }} {{ $c->prestataire?->user?->name ?? 'N/A' }} {{ $c->category_key }} {{ number_format($c->gross_order_amount, 2, ',', ' ') }} € {{ number_format($c->ambassador_commission_amount, 2, ',', ' ') }} € {{ $c->available_at?->format('d/m/Y') ?? '-' }} {{ $c->status_label }}
Aucune commission
{{ $commissions->withQueryString()->links() }}
@endsection