@extends('layouts.contentLayoutMaster') {{--@php--}} {{-- $breadcrumbs = [[['link' => route('parent.indebt.index'), 'name' => 'دفعات المديونية'],['link' => route('parent.inDebtTransaction',["indebt_id" => $debt->id])],['link' => route('parent.inDebtTransaction',["indebt_id" => $debt->id]), 'name' => 'مديونية '.$debt->student->student_name]],['title'=> 'دفعات المديونية رقم #'. $debt->id]];--}} {{--@endphp--}} @section('title', 'دفعات المديونية للطالب #'. $student->student_name) @section('page-style') @endsection @section('content')

دفعات المديونية

دفعات

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

@foreach($list as $key => $transaction) @endforeach
سنة المديونية الدفعة اجمالي المديونية الضرائب خ.فترة خ.قسيمة الأجمالي المدفوع المتبقي تاريخ الدفع
@if(!$transaction->payment_status) id. "," . $transaction->debt_id }}" href="{{ route('parent.showInDebtTransactionPaymentAttempt',$transaction->id) }}">ادفع @endif {{ $transaction->academic_year_name }} {{ $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