@extends('layout.template') @section('title', 'GestStudent') @section('title2') VISUALISER LES MOUVEMENTS @endsection @section('subtitle') Mouvement @endsection @section('main')

Data Export

Export data to Copy, CSV, Excel, PDF & Print

@foreach ($factures as $facture) @php $dis = ''; $phone = $facture->adresse; $nom = $facture->nom; $prenom = $facture->prenom; if ($facture->typeOperation != 'DIRECT') { $tel = $facture->msisdn; } if ($facture->statutOperation == 0) { //Si l'opération a réussie.... if ($facture->typefacture == 'FV') { $cumul += $facture->montant; } else { $cumul -= $facture->montant; } } @endphp @endforeach
Matricule Nom & Prénom Niv/Filière Période Date transaction Réf transaction Réf inter Montant Reçu Bank Type opération Statut opération Statut MECeF Date validation Téléphone Actions
Matricule Nom & Prénom Niv/Filière Période Date transation Réf transaction Réf inter Montant Reçu Bank Type opération Statut opération Statut MECeF Date validation Téléphone Action
{{ $facture->matricule }} {{ $nom }} {{ $prenom }} @foreach ($formations as $formation) @if ($facture->niveau == $formation->id) {{ $formation->niveauFormation }}{{ $facture->annee }}/ @endif @endforeach @foreach ($filieres as $filiere) @if ($facture->idFiliere == $filiere->idFiliere) {{ $filiere->sigleFilieres }} @endif @endforeach {{ intval($facture->annee_acad) - 1 }}-{{ $facture->annee_acad }} {{ $facture->dateTransaction }} {{ $facture->refFacture }} {{ $facture->refInternationale }} {{ $facture->montant }}[{{ $facture->typefacture }}] Reçu bank {{ $facture->typeOperation }} @if ($facture->statutOperation == 0) Succès @else @if ($facture->statutOperation == 1) @php $dis = 'dis'; $lien = ''; @endphp En attente @else @php $dis = 'dis'; @endphp Echec @endif @endif {{ $facture->statutMecef }} @if ($facture->statutOperation == 1) {{ $lien }} @endif {{ $facture->dateValidation }} {{ $phone }}
TOTAL TRANSACTION {{ $cumul }}
TOTAL TRANSACTION {{ $cumul }}
@endsection @section('script') @endsection