@extends('admin.layouts.app') @section('title', 'Unpaid Customers Report') @push('styles') @endpush @section('content')
| Name | Phone | Package Amount (₹) | Paid Amount (₹) | Balance (₹) | Payment Status | Package Expiry | Address | Action |
|---|---|---|---|---|---|---|---|---|
| {{ $row->Fname }} {{ $row->Lname }} | {{ $row->Phone }} | {{ number_format($pkgAmount, 2) }} | {{ number_format($paidAmount, 2) }} | {{ number_format($balance, 2) }} | @if ($paidAmount > 0) Partial @else Unpaid @endif | @if ($isExpired) {{ $validity }} @else {{ $validity }} @endif | {{ $row->Address }} | @if (\Illuminate\Support\Facades\Route::has('admin.payments.create')) Receive @else Receive @endif @if (\Illuminate\Support\Facades\Route::has('admin.customers.edit')) View @else View @endif |
| No unpaid customers found. | ||||||||