@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('transfers.index'), 'name' => 'طلبات الالتحاق'],['link' => route('applications.show',$application->id),'name' => 'تفاصيل الطلب']],['title'=> 'ادارة طلبات الالتحاق']]; @endphp {{--@section('title', 'دفعات التعاقد رقم #'. $contract->id)--}} @section('content') {{-- تفاصيل دفعات العقد رقم #{{ $contract->id }} - {!! $contract->getStatus() !!}--}} {{ 'اسم الطالب : ' . $application->student_name .' - السنة الدراسية ' . $application->year_name}} الاجراءات كود الدفعة الاساسي الضرائب خ.فترة خ.قسيمة خ.محفظة الأجمالي المدفوع المتبقي تاريخ الدفع بواسطة اخر تحديث @foreach($transactions as $key => $transaction) @can('accounts-list') @endcan {{ $transaction->id }} {{ $transaction->installment_name }} {{ round($transaction->amount_before_discount, 2) }} {{ round($transaction->vat_amount,2) }} {{ round($transaction->period_discount,2) }} {{ round($transaction->coupon_discount,2) }} {{ round($transaction->wallet_discount,2) }} {{ round($transaction->amount_after_discount + $transaction->vat_amount, 2) }} {{ round($transaction->paid_amount, 2) }} {{ round($transaction->residual_amount, 2) }} {{ $transaction->payment_status && $transaction->payment_date ? 'تم الدفع' . $transaction->payment_date : 'يجب الدفع قبل' . $transaction->payment_due }} {{ $transaction->admin_name }} {{ $transaction->updated_at->diffforhumans() }} @endforeach @endsection