{{ __('report.students-revenues-min') }}
@include('layouts.revenues-min-filter')
|
من
{{ isset($start) ? $start : '' }}
|
الي
{{ isset($end) ? $end : '' }}
|
| # | الكلية | عام | خاص | تسجيل | تأمين | غرامة | أخرى | دمغة | الخصومات | المجموع |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $no }} | {{ $college->name ?? '' }} | {{ $college->total_not_private_fees ?? 0.0 }} | {{ $college->total_private_fees ?? 0.0 }} | {{ $college->total_registration_fees ?? 0.0 }} | {{ $college->total_insurance_fees ?? 0.0 }} | {{ $college->total_penalty ?? 0.0 }} | {{ $college->total_other_fees ?? 0.0 }} | {{ $college->total_stamp ?? 0.0 }} | {{ $college->total_discount ?? 0.0 }} | {{ ($college->total_not_private_fees ?? 0) + ($college->total_private_fees ?? 0) + ($college->total_registration_fees ?? 0) + ($college->total_insurance_fees ?? 0) + ($college->total_penalty ?? 0) + ($college->total_other_fees ?? 0) + ($college->total_stamp ?? 0) }} |
| الإجمالي | {{ $totalNotPrivateFees ?? 0.0 }} | {{ $totalPrivateFees ?? 0.0 }} | {{ $totalRegistrationFees ?? 0.0 }} | {{ $totalInsuranceFees ?? 0.0 }} | {{ $totalPenalty ?? 0.0 }} | {{ $totalOtherFees ?? 0.0 }} | {{ $totalStamp ?? 0.0 }} | {{ $totalDiscount ?? 0.0 }} | {{ $_TOTAL ?? 0.0 }} | |