@extends('layouts.app') @section('content') @if(in_array(auth()->user()->role->name, ['super_admin', 'company_admin', 'company_owner']))
Manage overdue accounts, disconnections, and reconnections
Overdue Accounts
Pending Notices
Disconnected
Total Late Fees
| Client | Billing Amount | Days Overdue | Overdue Balance | Late Fees | Due Date | Actions |
|---|---|---|---|---|---|---|
|
{{ substr($billing->client->name ?? 'N/A', 0, 1) }}
{{ $billing->client->name ?? 'Unknown' }} {{ $billing->client->account_number ?? 'N/A' }} |
₱{{ number_format($billing->balance ?? 0, 2) }} | @php $daysOverdue = $billing->getDaysOverdue() ?? 0; @endphp {{ $daysOverdue }} days | ₱{{ number_format($billing->balance ?? 0, 2) }} | ₱{{ number_format($billing->penalties ?? 0, 2) }} | {{ $billing->due_date ? $billing->due_date->format('M d, Y') : 'N/A' }} | View @if(($billing->disconnection_status ?? 'none') === 'none') @endif Print Notice Thermal |
| No overdue billings found. | ||||||
| Client | Billing Amount | Days Overdue | Notice Date | Actions |
|---|---|---|---|---|
|
{{ substr($billing->client->name ?? 'N/A', 0, 1) }}
{{ $billing->client->name ?? 'Unknown' }} {{ $billing->client->account_number ?? 'N/A' }} |
₱{{ number_format($billing->balance ?? 0, 2) }} | {{ $billing->getDaysOverdue() ?? 0 }} days | {{ $billing->updated_at ? $billing->updated_at->format('M d, Y') : 'N/A' }} | Print Notice Thermal |
| No pending notices. | ||||
| Client | Overdue Balance | Days Overdue | Disconnected Date | Actions |
|---|---|---|---|---|
|
{{ substr($billing->client->name ?? 'N/A', 0, 1) }}
{{ $billing->client->name ?? 'Unknown' }} {{ $billing->client->account_number ?? 'N/A' }} |
₱{{ number_format($billing->balance ?? 0, 2) }} | {{ $billing->getDaysOverdue() ?? 0 }} days | {{ $billing->updated_at ? $billing->updated_at->format('M d, Y H:i') : 'N/A' }} | View Details |
| No disconnected services. | ||||
Only Super Admin and Company Admin users can access the Disconnection Management system.
Back to Dashboard