@extends('admin.layout.app') @section('style') @endsection @section('content')

التطبيق

@foreach($incomes as $item) @endforeach
المدين القيمة الطلب الحالة
@if ($item->taggable_type == 'App\Models\School') {{$item->School->name ?? ''}} @elseif ($item->taggable_type == 'App\Models\Company') {{$item->Company->name ?? ''}} @elseif ($item->taggable_type == 'App\Models\Bus') باص رقم : {{$item->Bus->id ?? ''}} @elseif ($item->taggable_type == 'App\Models\User') {{$item->Parent->name ?? ''}} @endif {{ $item->amount ?? '' }} {{ $item->order_id ?? '' }} @if($item->active == '1') تم التحصيل @else {!!Form::model($item , ['url' => ['/dashboard/payments/'.$item->id] , 'method' => 'PATCH','files'=>true]) !!} {!!Form::close() !!} @endif

الشركات

@foreach($company_outcomes as $item) @endforeach
المدين القيمة الطلب الحالة
التطبيق {{ $item->amount ?? '' }} {{ $item->order_id ?? '' }} @if($item->active == '1') تم السداد @else {!!Form::model($item , ['url' => ['/dashboard/payments/'.$item->id] , 'method' => 'PATCH','files'=>true]) !!} {!!Form::close() !!} @endif

المدارس

@foreach($school_outcomes as $item) @endforeach
المدين القيمة الطلب الحالة
التطبيق {{ $item->amount ?? '' }} {{ $item->order_id ?? '' }} @if($item->active == '1') تم السداد @else {!!Form::model($item , ['url' => ['/dashboard/payments/'.$item->id] , 'method' => 'PATCH','files'=>true]) !!} {!!Form::close() !!} @endif

الافراد

@foreach($bus_outcomes as $item) @endforeach
المدين القيمة الطلب الحالة
التطبيق {{ $item->amount ?? '' }} {{ $item->order_id ?? '' }} @if($item->active == '1') تم السداد @else {!!Form::model($item , ['url' => ['/dashboard/payments/'.$item->id] , 'method' => 'PATCH','files'=>true]) !!} {!!Form::close() !!} @endif
@endsection @section('script') @endsection