@extends('layouts.master') @section('content')
Total Paiements

{{ number_format($stats['total_paiements'], 0, ',', ' ') }}

Nombre total
Montant Total

{{ number_format($stats['total_montant'], 0, ',', ' ') }} BIF

Tous carburants
Essence

{{ number_format($stats['total_essence'], 0, ',', ' ') }} BIF

Paiements essence
Gasoil

{{ number_format($stats['total_gasoil'], 0, ',', ' ') }} BIF

Paiements gasoil
Filtrer les paiements
@if(request()->anyFilled(['numero_recu', 'numero_bon', 'vehicule', 'responsable', 'carburant', 'mode_paiement', 'date_debut', 'date_fin', 'montant_min', 'montant_max'])) Réinitialiser @endif Excel PDF
Liste des paiements
@forelse($paiements as $paiement) @empty @endforelse
N° Reçu N° Bon Véhicule Responsable Carburant Litres Montant (BIF) Date paiement Description
{{ $paiement->numero_sys }} @if($paiement->numero_recu)
{{ $paiement->numero_recu }} @endif
{{ $paiement->numero_bon_a_servir }} {{ $paiement->num_immatriculation }}
{{ $paiement->marque }} {{ $paiement->modele }}
{{ $paiement->responsable_commande ?? 'N/A' }} @if($paiement->id_type_carburant == 1) ESSENCE @else GASOIL @endif {{ number_format($paiement->quantite_servie, 0, ',', ' ') }} L {{ number_format($paiement->montant_paye, 0, ',', ' ') }} {{ date('d/m/Y H:i', strtotime($paiement->date_paiement)) }} {{ $paiement->description ?? '-' }}
Aucun paiement trouvé
TOTAL : {{ number_format($paiements->sum('montant_paye'), 0, ',', ' ') }} BIF
@if($paiements->hasPages()) @endif
@stop