@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('parent.indebt.index'), 'name' => "المديونيات"],['name'=> 'مديونيات الطلاب ']],['title'=> 'مديونيات الطلاب ']]; @endphp @section('title', 'مديونيات الطلاب ') @section('vendor-style') @endsection @section('page-style') @endsection @section('content') مديونيات الطلاب لولي الامر {{$guardian->user->first_name.' '.$guardian->user->last_name}} قائمة المديونيات .. {{$list->count()}} مديونية الاجراءات اسم الابن رقم الهوية اجمالي المديونيات المبلغ المدفوع المتبقي @foreach ($list as $key => $record) @can('guardian-indebt-list') @endcan {{ $record->student_name }} {{ $record->student_national_id }} {{ $record->total_debts }} ر.س {{ $record->total_paids }} ر.س {{ round($record->total_debts - $record->total_paids,2) }} ر.س @endforeach @endsection