@extends('layouts.app') @section('content')

التنبيهات

غير مدفوع{{ $unpaid->count() }}
عقود قاربت الانتهاء{{ $expiring->count() }}
زيادات قادمة{{ $increases->count() }}
فروق تسوية{{ $differences->count() }}

المبالغ غير المحصلة

@foreach($unpaid as $a)@endforeach
المبنىالشقةالمسؤولالفترةالمبلغ
{{ $a->building_name }}{{ $a->apartment_number }}{{ $a->payer_name }}{{ $a->month->month }}/{{ $a->month->year }}{{ $a->total_due }}

العقود والزيادات

@foreach($expired as $o)
انتهى عقد {{ $o->person_name }} — {{ $o->apartment->building->name }} / {{ $o->apartment->number }}
@endforeach @foreach($expiring as $o)
عقد {{ $o->person_name }} ينتهي في {{ $o->ends_on->format('d/m/Y') }}
@endforeach @foreach($increases as $o)
زيادة إيجار {{ $o->person_name }} في {{ $o->next_increase_on->format('d/m/Y') }}
@endforeach

مراجعة الحسابات

@foreach($differences as $s)
فرق {{ $s->difference }} في {{ $s->month->building->name }}، {{ $s->month->month }}/{{ $s->month->year }}
@endforeach @foreach($drafts as $p)
شهر {{ $p->month }}/{{ $p->year }} في {{ $p->building->name }} لم يعتمد بعد.
@endforeach@endsection