@extends('layouts.master') @section('title', 'Express54') @section('content') @php //$id = request()->query('id'); $child = request()->query('childServiceId'); //echo $id."::".$child; $Titres = [ 1 => "MESRS", 2 => "METFPA" ]; $sousTitres = [ 25 => "Secours", 27 => "Attributions", 28 => "Renouvellement", 26 => "Attributions", 29 => "Renouvellement", 23 => "Secours", ]; $titre = $Titres[$id] ?? null; $soustitre = $sousTitres[$child] ?? null; // null si l'ID ne correspond à aucun @endphp


@if (Session('error')) @endif @if (Session('success')) @endif
@lang('messages.back')

Etudiants Boursiers - Ordre de Paiement N°{{ $numero_ordre }}
{{$soustitre}} - {{$titre}}

@foreach ($acceptedApplications as $application) @endforeach
Nom Complet Numéro de décision Page Montant à payer Banque RIB Montant payé Reste à payer Montant total
{{ strtoupper($application->student_name) }} {{ $application->num_decision }} {{ $application->num_page }} {{ $application->banque_name }} {{ $application->swift_iban_number }} {{ number_format(($application->montant_paye ?? 0) / 655.957, 2, ',', ' ') }} € {{ number_format(($application->difference ?? 0) / 655.957, 2, ',', ' ') }} € {{ isset($application->payment_data) && is_numeric($application->montant_bourse) ? number_format((float) $application->montant_bourse / 655.957, 2, ',', ' ') . ' €' : '' }}


@endsection