@extends('layouts.app') @section('title', 'Dashboard') @section('content')
| Name | Phone | Status | |
|---|---|---|---|
| {{ $client->name }} | {{ $client->email }} | {{ $client->phone }} | {{ ucfirst($client->status) }} |
No clients yet
@endif| Client | Amount | Status | Date |
|---|---|---|---|
| {{ $billing->client->name ?? 'N/A' }} | ${{ number_format($billing->total_amount_due, 2) }} | {{ ucfirst($billing->status) }} | {{ $billing->created_at->format('M d, Y') }} |
No billings yet
@endif