@extends('layouts.master') @section('title', 'Express54') @section('content')


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

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

@foreach ($acceptedApplications as $application) @if (!empty($application->payment_data->first_amount) && empty($application->payment_data->first_payment)) @elseif (!empty($application->payment_data->second_amount) && empty($application->payment_data->second_payment)) @elseif (!empty($application->payment_data->third_amount) && empty($application->payment_data->third_payment)) @elseif (!empty($application->payment_data->fourth_amount) && empty($application->payment_data->fourth_payment)) @else @endif @endforeach
Nom Complet Numéro de décision Page Montant à payer Date Banque RIB Montant payé Reste à payer Documents 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, ',', ' ') }} € doc 1 doc 2 doc 3 {{ isset($application->payment_data) && is_numeric($application->montant_bourse) ? number_format((float) $application->montant_bourse / 655.957, 2, ',', ' ') . ' €' : '' }}


@endsection