Monitor business accounts and their plan activity
| Business | Contact Info | Active Plan | Employees | Self-Payments | Actions |
|---|---|---|---|---|---|
|
{{ $business->name }}
ID: {{ $business->id }}
|
{{ $business->email }}
{{ $business->phone }}
|
@if($activePlan)
Quantity: {{ $activePlan->plan_quantity }}
Total: ${{ number_format($activePlan->total_price / 100, 2) }}
Ends: {{ $activePlan->ends_at ? $activePlan->ends_at->format('M j, Y') : 'Ongoing' }}
@else
No Active Plan
@endif
|
{{ $activeEmployees }} active
{{ $totalEmployees }} total
|
@if($selfPaymentsCount > 0)
{{ $selfPaymentsCount }} payments
${{ number_format($selfPaymentsAmount, 2) }} total
@else
No self-payments
@endif
|
@if($activePlan)
View Plan
@endif
|
| No businesses found. | |||||