@vite(['resources/css/app.css', 'resources/js/app.js']) @include('admin.partials.styles') @include('admin.partials.sidebar')

Client Acquisition Analysis

Join Period:
to
Reset
@forelse($clients as $client) @empty @endforelse
Client Name Contact Info Verification LTV (Orders) Joined Date Status
{{ substr($client->name, 0, 1) }}
{{ $client->name }}
{{ $client->email }}
@if($client->whatsapp_number)
WA: {{ $client->whatsapp_number }}
@endif
{{ $client->email_verified_at ? 'Verified' : 'Pending' }} {{ $client->orders_count }} Orders
{{ $client->created_at->format('M d, Y') }}
{{ $client->created_at->diffForHumans() }}
@if($client->is_active) Active @else Inactive @endif
No client registrations found for this period.
@if($clients->count() > 0)
{{ $clients->withQueryString()->links() }}
@endif