Dashboard
Orders
{{ $commandes_count ?? 0 }}
Users
{{ $users_count ?? 0 }}
Messages
{{ $contacts_count ?? 0 }}
Quick Actions
Content Status
Services
{{ $services_stats['active'] }} / {{ $services_stats['total'] }} active
Training
{{ $formations_stats['active'] }} / {{ $formations_stats['total'] }} active
News
{{ $content_stats['actualites'] }}
Research
{{ $content_stats['researches'] }}
Recent Orders
View All| # | Customer | Status | Date | |
|---|---|---|---|---|
| #{{ $commande->numero }} | {{ $commande->user->name ?? 'N/A' }} |
@if($commande->statut == 'pending')
Pending
@elseif($commande->statut == 'completed')
Completed
@elseif($commande->statut == 'cancelled')
Cancelled
@else
In Progress
@endif
|
{{ $commande->created_at->format('d/m/Y') }} | |
|
No recent orders |
||||
Pending Orders
| #Reference | Customer | Date | Status | Actions |
|---|---|---|---|---|
| {{ $commande->numero ?? $commande->id }} |
{{ strtoupper(substr($commande->user->name ?? 'U', 0, 1)) }}
|
{{ $commande->created_at->format('d/m/Y H:i') }} |
@if($commande->statut == 'pending' || $commande->statut == 'En attente')
Pending
@elseif($commande->statut == 'processing' || $commande->statut == 'En cours')
In Progress
@elseif($commande->statut == 'completed' || $commande->statut == 'Complété')
Completed
@elseif($commande->statut == 'cancelled' || $commande->statut == 'Annulé')
Cancelled
@else
{{ $commande->statut }}
@endif
|
|
|
No orders found |
||||
{{ $commandes->links() }}
New Customers
| Subject | Customer | Date | Status | Actions |
|---|---|---|---|---|
| {{ $support->id }} |
{{ strtoupper(substr($support->name, 0, 1)) }}
|
{{ \Carbon\Carbon::parse($support->created_at)->format('d/m/Y H:i') }} |
{{ $support->read ? 'Read' : 'Unread' }}
|
|
|
No messages found |
||||
{{ $supports->links() }}