@extends('layouts.app') @section('styles') @endsection @section('content')
{{ __('report.student-payments') }} : {{ isset($student->student_name) ? $student->student_name : '' }}
@if (isset($studentPayments)) @foreach ($studentPayments as $studentPayment) @if ($student) @endif @endforeach @else @endif
{{ __('fee.transaction-reference') }} {{ __('fee.fee-amount') }} نوع العملة {{ __('student.semester') }} {{ __('student.payment-date') }}
{{ $studentPayment->transaction_ref }} {{ $studentPayment->payment_amount }} {{ $studentPayment->payment_currency }} {{ $studentPayment->semester ? $studentPayment->semester->name : __('student.not-set') }} {{ $studentPayment->created_at}}
no data
{{ __('report.total') }} = {{ isset($totalAmount) ? $totalAmount : 0 }}
@endsection @section('scripts') @endsection