@extends('layouts.admin') @section('content')

Overview

Total Users
{{ $total_users }}
Total Teams
{{ $total_teams }}
Total Plans
{{ $total_plans }}
Total Projects
{{ $total_projects }}
Pending Projects
{{ $pending_projects }}
Projects Done
{{ $completed_projects }}
Failed Projects
{{ $failed_projects }}
Total Models
{{ $total_models }}
Total Visitors
{{--
{{ number_format($totalVisitors) }}
--}}
User Growth
Recent Joining
@if ($recent_users->count() > 0)
{{-- --}} @foreach ($recent_users as $user) @endforeach
# NameEmailJoined At
{{ $loop->iteration }} @if ($user->google_id) @elseif ($user->facebook_id) @else @endif {{ $user->name }}
{{ $user->email }}
{{ $user->created_at->format('d M, Y') }}
@else

No new users joined this week.

@endif
@endsection