{{ __('Business Dashboard') }}

{{-- @if($business->trial_enabled)

Trial Status

@if($business->is_trial_active)

Your trial is active and will expire in {{ $trialDaysRemaining }} days.

@else

Your trial has expired. Please select a plan to continue using the service.

@endif
Days Remaining
{{ $trialDaysRemaining }}
@endif

Employees

{{ $activeEmployeesCount }}

{{ $availableSeats }} seats available

Appointments

{{ $upcomingAppointmentsCount }}

Total Seats

{{ $totalSeats }}

Recent Appointments

View All
@if($recentAppointments->count() > 0)
@foreach($recentAppointments as $appointment) @endforeach
Employee Doctor Date & Time Status Type Actions
{{ $appointment->patient->name }} {{ $appointment->doctor->name }} {{ $appointment->formatDate('scheduled_at', 'M d, Y g:i A') }} {{ Consultation::STATUSES[$appointment->status] }} {{ $appointment->type }} View
@else

No recent appointments found.

@endif

Business Information

Business Name: {{ $business->name }}
Email: {{ $business->email }}
Phone: {{ $business->phone }}
Address: {{ $business->address1 }} @if($business->address2), {{ $business->address2 }}@endif @if($business->city), {{ $business->city }}@endif @if($business->state), {{ $business->state }}@endif @if($business->zip) {{ $business->zip }}@endif
@if($creditCards->count() > 0)

Payment Methods

@foreach($creditCards as $card)
•••• •••• •••• {{ $card->last_four }} Expires {{ $card->exp_month }}/{{ $card->exp_year }} @if($card->is_default) Default @endif
@endforeach
@endif
--}}