@extends('admin.layout') @section('title', 'Dashboard') @section('content')

Total Prestataires

{{ $stats['total_providers'] }}

Actifs

{{ $stats['active_providers'] }}

Inactifs

{{ $stats['inactive_providers'] }}

Prestataires récents

Voir tout
@if($stats['recent_providers']->count() > 0)
@foreach($stats['recent_providers'] as $provider)
@if($provider->logo) Logo @else
{{ substr($provider->business_name, 0, 1) }}
@endif

{{ $provider->business_name }}

{{ $provider->user->email }}

{{ $provider->user->is_active ? 'Actif' : 'Inactif' }} Modifier
@endforeach
@else

Aucun prestataire pour le moment

@endif

Actions rapides

@endsection