@extends('layouts.admin')
@section('title', 'Dashboard')
@section('header', 'Overview')
@section('content')
Total Users
{{ $stats['users'] }}
Total Media
{{ $stats['media'] }}
System Status
Operational
PHP {{ $system['php'] }}
Setup Wizards (Coming Soon)
Newest Users
@foreach($stats['recent_users'] as $user)
-
{{ $user->name }}
{{ $user->email }}
Active
@endforeach
@endsection