@extends('layouts.app') @push('styles') @endpush @section('content')

Process Rent & Services

Generate bills for unprocessed tenants

View All Bills

Total Unprocessed

{{ number_format($unprocessedServices->total()) }}

Current Period

{{ \Carbon\Carbon::parse($period)->format('M Y') }}

Quick Actions

View Invoices

Unprocessed Tenants

Generate bills for tenants without current period bills

@if (session('status')) @endif @if ($errors->any()) @endif @if($unprocessedServices->isEmpty())

No Unprocessed Bills Found

There are no unprocessed rent services for {{ \Carbon\Carbon::createFromFormat('Y-m', $period)->format('F Y') }}.

Previous Month {{ \Carbon\Carbon::parse($period)->format('M Y') }} Next Month
@else
@foreach($unprocessedServices as $service) @endforeach
# Tenant Unit Details Unit Identity Actions
{{ $loop->iteration }}
{{ $service->CustomerName }}
{{ $service->AccountNo }}
@if($service->unit)
{{ $service->unit->UnitIdentity ?? 'N/A' }}
{{ $service->unit->property->PropName ?? 'N/A' }}
@else No unit assigned @endif
@if($service->unit)
{{ $service->unit->UnitIdentity ?? 'N/A' }}
@else No unit assigned @endif
@csrf
@if($unprocessedServices->hasPages())
Showing {{ $unprocessedServices->firstItem() ?? 0 }} to {{ $unprocessedServices->lastItem() ?? 0 }} of {{ $unprocessedServices->count() }} entries
{{ $unprocessedServices->links() }}
@endif
@endif
@push('scripts') @endpush @endsection @push('scripts') @endpush