36 lines
919 B
PHP
36 lines
919 B
PHP
<?php
|
|
|
|
return [
|
|
'title' => 'Dashboard',
|
|
'subtitle' => 'Overview of your practice',
|
|
|
|
// User Metrics
|
|
'clients' => 'Clients',
|
|
'total_active' => 'Total Active',
|
|
'individual' => 'Individual',
|
|
'company' => 'Company',
|
|
'deactivated' => 'Deactivated',
|
|
'new_this_month' => 'New This Month',
|
|
|
|
// Booking Metrics
|
|
'consultations' => 'Consultations',
|
|
'pending_requests' => 'Pending Requests',
|
|
'today' => 'Today',
|
|
'this_week' => 'This Week',
|
|
'this_month' => 'This Month',
|
|
'free' => 'Free',
|
|
'paid' => 'Paid',
|
|
'no_show_rate' => 'No-Show Rate',
|
|
|
|
// Timeline Metrics
|
|
'timelines' => 'Timelines',
|
|
'active_cases' => 'Active Cases',
|
|
'archived' => 'Archived',
|
|
'updates_this_week' => 'Updates This Week',
|
|
|
|
// Post Metrics
|
|
'posts' => 'Posts',
|
|
'total_published' => 'Total Published',
|
|
'published_this_month' => 'Published This Month',
|
|
];
|