@extends('layouts.app') @section('styles') @endsection @section('content')
{{ __('report.students-revenues') }}
@csrf @include('layouts.filter')
{{__('student.reset') }}
@if (auth()->user()->hasRole(['financial', 'admin'])) @endif
الكلية
{{ isset($college) ? $college->name : '' }}
الدفعة
{{ isset($batch) ? $batch->value : '' }}
القسم
{{ isset($section) ? $section->name : '' }}
البرنامج
{{ isset($program) ? $program->name : '' }}
نوع القبول
{{ isset($admission) ? $admission->name : '' }}
البنك
{{ isset($bank) ? $bank->name : '' }}
من
{{ isset($start) ? $start : '' }}
الي
{{ isset($end) ? $end : '' }}
@if ( isset($payments) ) @foreach ($payments as $payment) @endforeach @endif
# رقم الطالب اسم الطالب التامين الصحي رسوم التسجيل الرسوم الدراسية الخصومات
{{ $no }} {{ $payment->student_id ?? '' }} {{ $payment->student_name ?? '' }} {{ $payment->p_insurance_fees ?? 0.0 }} {{ $payment->p_registration_fees ?? 0.0 }} {{ $payment->p_study_fees ?? 0.0 }} {{ $payment->p_discount ?? 0.0 }}
المجموع {{ $totalInsuranceFees }} {{ $totalRegistrationFees}} {{ $totalStudyFees != 0 ? $totalStudyFees / 2 : 0.0 }} {{ $totalDiscount }}
@if (auth()->user()->hasRole(['financial', 'admin'])) @endif
{{-- modal --}} @endsection @section('scripts') @endsection