@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('parent.transfers.index'), 'name' => 'طلبات التجديد'],['link' => route('parent.transferRequestTransaction',["application_id" => $application->id]), 'name' => $application->student_name],['link' => route('parent.transferRequestTransaction',["application_id" => $application->id]), 'name' => 'تعاقد '.$application->year_name]],['title'=> 'دفعات التعاقد رقم #'. $application->id]]; @endphp @section('title', 'دفعات تجديد التعاقد رقم #'. $application->id) @section('page-style') @endsection @section('content')

دفعات طلب التجديد

دفعات

عدد الدفعات اللازمه..{{count($transactions)}}

@foreach($transactions as $key => $transaction) @endforeach
القسط الاساسي الضرائب خ.فترة خ.قسيمة الأجمالي المدفوع المتبقي تاريخ الدفع
@if(!$transaction->payment_status) id }}" href="{{ route('parent.showTransferRequestTransactionPaymentAttempt',$transaction->id) }}">ادفع @endif {{ $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->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 }}
X
@endsection @section('page-script') @endsection