@extends('layouts.teacher') @section('content')
Attendance Transactions
@lang('student.filter by')
{{-- --}}
{{-- tabs --}} @if ($unposted_transactions)

Payment Un-Posted Transactions List

@if (count($unposted_transactions) > 0) @if ($unposted_transactions->total() >4000) @else
@endif @endif
@php $count=0; @endphp @forelse ($unposted_transactions as $transaction) @empty @endforelse
id Student course name Enrollment Method Teaching Team date amount (EGP) amount (AED) Transaction Currency Student Currency Rate status
{{ ++$count }} {{ $transaction->first_name . ' ' . $transaction->middle_name. ' ' . $transaction->last_name}} {{$transaction->has_label ? ' ( '.$transaction->label.' ) ':''}} {{ $transaction->cname }} ( {{ $transaction->lshort_name }} ) ( {{ $transaction->acyname }}) {{$transaction->fees_by_lesson ? 'By Lesson':'By Course'}} {{ $transaction->ttname }} {{ $transaction->created_at->format('d-m-Y') . ' / '}} {{date('h:i A', strtotime($transaction->created_at))}} {{ $transaction->teacher_amount }} EGP {{ $transaction->teacher_amount_aed }} AED {{ $transaction->currency == 2 ? 'EGP':'AED' }} {{ $transaction->payment_gateway == 2 ? 'EGP':'AED' }} {{ $transaction->rate ? $transaction->rate : 0 }} @if($transaction->is_extra) Extra @endif @if ($transaction->is_refunded == 1 || $transaction->is_refunded_after_post == 1) Refunded @else Paid @endif Un-Posted {{$transaction->is_live == 1 ? 'Live':'Recording'}}
empty table

There is no data!

{{ $unposted_transactions->appends(Request::except('page'))->render('inc.paginate') }}

Displaying {{$unposted_transactions->count()}} of {{ $unposted_transactions->total() }} transaction(s).

@endif @if ($posted_transactions)

Payment Un-Posted Transactions List

@if (count($posted_transactions) > 0) @if ($posted_transactions->total() >4000) @else
@endif @endif
@php $count=0; @endphp @forelse ($posted_transactions as $transaction) @empty @endforelse
id Student course name Enrollment Method Teacher date amount status
{{ ++$count }} {{ $transaction->first_name . ' ' . $transaction->middle_name. ' ' . $transaction->last_name}} {{$transaction->has_label ? ' ( '.$transaction->label.' ) ':''}} {{ $transaction->cname }} ( {{ $transaction->lshort_name }} ) ( {{ $transaction->acyname }}) {{$transaction->fees_by_lesson ? 'By Lesson':'By Course'}} {{ $transaction->ttname }} {{ $transaction->created_at->format('d-m-Y') . ' / '}} {{date('h:i A', strtotime($transaction->created_at))}} {{ $transaction->teacher_amount }} EGP @if($transaction->is_extra) Extra @endif @if ($transaction->is_refunded == 1 || $transaction->is_refunded_after_post == 1) Refunded @else Paid @endif Posted {{$transaction->is_live == 1 ? 'Live':'Recording'}}
empty table

There is no data!

{{ $posted_transactions->appends(Request::except('page'))->render('inc.paginate') }}

Displaying {{$posted_transactions->count()}} of {{ $posted_transactions->total() }} transaction(s).

@endif
@endsection @section('teacher-js') @endsection