Welcome back,
{{ view.charAt(0).toUpperCase() + view.slice(1) }}
{{ user.name }}
Administrator
{{ user.name?.charAt(0) }}
Total Clients
{{ stats.clients }}
Active Services
{{ stats.services }}
Messages Sent
{{ stats.messages }}
Total Profit
${{ stats.profit.toFixed(2) }}
Manage your client list
| NAME | PHONE | BALANCE | ACTIONS |
|---|---|---|---|
| {{ client.name }} | {{ client.phone }} | ${{ client.balance.toFixed(2) }} |
Manage your services and pricing
| NAME | PRICE | SELLING PRICE | PROFIT | ACTIONS |
|---|---|---|---|---|
| {{ svc.name }} | ${{ svc.price.toFixed(2) }} | ${{ svc.sellingPrice.toFixed(2) }} | ${{ (svc.sellingPrice - svc.price).toFixed(2) }} |
Track message history and billing
| CLIENT | CONTENT | DATE | PROFIT | STATUS | ACTIONS |
|---|---|---|---|---|---|
|
{{ msg.clientId?.name || 'Unknown' }}
{{ msg.clientId?.phone }}
|
{{ new Date(msg.timestamp).toLocaleDateString() }} | +${{ msg.profit.toFixed(2) }} | {{ msg.paymentStatus }} |