@extends('layouts.teacher') @section('content')
| id | Student | date | currency | rate | amount egp | amount aed | status |
|---|---|---|---|---|---|---|---|
| {{ ++$count }} | {{ $transaction->user->first_name . ' ' . $transaction->user->middle_name}} | {{ $transaction->created_at->format('d-m-Y') }} | {{ $transaction->currency == 1 ? 'AED':'EGP'}} | {{ $transaction->rate }} | {{$transaction->teacher_amount}} EGP {{-- {{ $transaction->amount_due ? $transaction->amount_due : $transaction->amount}} EGP --}} {{-- --}} | {{ $transaction->teacher_amount_aed }} | @if ($transaction->is_refunded == 1) Refunded @else Paid @endif @if ($transaction->is_posted == 1) Posted @else Un-Posted @endif |
| {{ ++$count }} | {{ $transaction->user->first_name . ' ' . $transaction->user->middle_name}} | {{ $transaction->created_at->format('d-m-Y') }} | {{$transaction->teacher_amount}} EGP {{-- {{ $transaction->amount_due ? $transaction->amount_due : $transaction->amount}} EGP --}} | @if ($transaction->is_refunded == 1) Refunded @else Paid @endif @if ($transaction->is_posted == 1) Posted @else Un-Posted @endif |