@extends('layouts.admin') @section('content')
{{-- paid --}} @if ($paid)
@lang('student.filter by')

Paid List

{{-- Total amount --}}
Total amount

{{$total_amount}} EGP

{{$total_amount_aed}} AED

{{-- Total Teacher amount --}}
Teacher amount

{{$total_teacher_amount}} EGP

{{$total_teacher_amount_aed}} AED

{{-- Total Eshra7ly amount --}}
Eshra7ly amount

{{$total_eshra7ly_amount}} EGP

{{$total_eshra7ly_amount_aed}} AED

@endif {{-- UnPaid --}} @if ($unPaid)
@lang('student.filter by')

Un-Paid List

{{-- Total amount --}}
Total amount

{{$total_amount}} EGP

{{$total_amount_aed}} AED

{{-- Total Teacher amount --}}
Teacher amount

{{$total_teacher_amount}} EGP

{{$total_teacher_amount_aed}} AED

{{-- Total Eshra7ly amount --}}
Eshra7ly amount

{{$total_eshra7ly_amount}} EGP

{{$total_eshra7ly_amount_aed}} AED

@php $count=0 @endphp @foreach ($unPaid as $transaction) @endforeach
Id course amount egp teacher amount egp eshra7ly amount egp amount aed teacher amount aed eshra7ly amount aed transaction type created at
{{++$count}} {{$transaction->acyname .'_'.$transaction->cname.' ('.$transaction->lshort_name.' ) '.$transaction->ttname}} @if($transaction->has_label) {{$transaction->label}} @endif {{$transaction->amount_due}} {{$transaction->teacher_amount}} {{$transaction->eshar7ly_amount}} {{$transaction->amount_due_aed ?? 0}} {{$transaction->teacher_amount_aed ?? 0}} {{$transaction->eshra7ly_amount_aed ?? 0}} @if($transaction->tblid) Transaction By Lesson @else Installment @endif {{ $transaction->created_at->format('d-m-Y') . ' / '}} {{date('h:i A', strtotime($transaction->created_at))}} @if($transaction->tblid) show details @else show details @endif
@endif
@endsection @section('admin-js') @endsection