@extends('layouts.dashboard') @section('styles') @endsection @section('content')

Manage Recruiters & Companies

Refresh Data
Total Recruiters

{{ $stats['total'] }}

Active

{{ $stats['active'] }}

Featured

{{ $stats['featured'] }}

Pending Verify

{{ $stats['pending'] }}

Expired Plans

{{ $stats['expired_plans'] }}

Total Revenue

${{ number_format($stats['revenue']) }}

@foreach($companies as $company) @endforeach
Company / Recruiter Current Plan Usage (Live/Total) Status Actions
{{ $company->name }} @if($company->is_verified) @endif @if($company->is_featured) @endif
{{ $company->user->name ?? 'N/A' }} ({{ $company->user->email ?? 'N/A' }})
@if($company->user && $company->user->subscription && $company->user->subscription->plan) {{ $company->user->subscription->plan->name }}
Exp: {{ $company->user->subscription->ends_at ? $company->user->subscription->ends_at->format('M d, Y') : 'Lifetime' }}
@else Free/None @endif
Jobs: {{ $company->user ? $company->user->subscription->job_posts_used ?? 0 : 0 }} used
Since: {{ $company->created_at->format('M Y') }}
{{ ucfirst($company->status ?? 'active') }}
@endsection @section('scripts') @endsection