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