@extends('admin.layouts.master') @section('title', 'تقرير مستحقات المعلمين') @section('content')
@include('admin.partials.page-header', [ 'title' => 'تقرير مستحقات المعلمين', 'breadcrumbs' => $breadcrumbs, ])

إجمالي الحسابات

{{ $report['total'] }}

مصروفة

{{ $report['processed'] }}

قيد الانتظار

{{ $report['pending'] }}

الإجمالي المستحق

{{ number_format($report['totalSalaries'], 2) }} ر.س

تفاصيل المستحقات
@forelse($report['records'] as $payroll) @empty @endforelse
# المعلم الفترة الراتب المكافأة الصافي الحالة
{{ $loop->iteration }} {{ $payroll->teacher?->name }} {{ $payroll->month_year }} {{ $payroll->formatted_base_salary }} + {{ $payroll->formatted_bonus }} {{ $payroll->formatted_final }} {{ $payroll->status }}
لا توجد بيانات
@endsection