@extends('layouts.contentLayoutMaster') {{--@php--}} {{--$breadcrumbs = [[['link' => route('students.index'), 'name' => 'الطلاب'],['link' => route('students.show',$contract->student_id), 'name' => $contract->student_name],['link' => route('students.contracts.index',$contract->student_id), 'name' => 'التعاقدات'],['link' => route('students.contracts.index',[$contract->student_id,$contract->id]), 'name' => 'تعاقد '.$contract->year_name]],['title'=> 'دفعات التعاقد رقم #'. $contract->id]];--}} {{--@endphp--}} @section('title', 'دفعات التعاقد رقم #'. $withdrawal_application->id) @section('content') تفاصيل دفعات طلب الانسحاب رقم #{{ $withdrawal_application->id }} الاجراءات كود الدفعة الاساسي الضرائب خ.فترة خ.قسيمة خ.محفظة الأجمالي المدفوع المتبقي تاريخ الدفع بواسطة اخر تحديث @foreach($transactions as $key => $transaction) @can('accounts-list') @endcan @if(!$transaction->payment_status) @can('accounts-list') @endcan @endif {{ $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