@extends(getTemplate('admin')) @section('content') @push('custom-css') @endpush
@php $cs = 0; if(intval($todayVisits) != 0) $cs = 100 - intval($lastWeekVisitorsCount) / intval($todayVisits) * 100; $cs = intval($cs); $cStat = ($cs >= 0) ? 'Better than last week ('.$cs.'%)': 'Worse than last week ('.(-1)*$cs.'%)'; @endphp
TODAY'S VISITS
{{$todayVisits}}
{{$cStat}}
TOTAL VISITORS
{{$totalVisits}}
@php $userCount = \App\Models\User::count(); @endphp
TOTAL MEMBERS
{{$userCount}}
Better than last week (76.3%)
@php $social_module = new Module(); $social_module = $social_module->where('folder', 'social')->get(); if($social_module->exists()){ $p = new SocialPost(); $p = $p->count(); } else $p = 0; @endphp
@if(module_exists('events')) @endif @if(module_exists('events')) @endif @if(module_exists('payments')) @endif @if(module_exists('memberships')) @endif

Activity & Highlights

Activity Details Coming Soon
@include('includes.component.admin-alert-messenger')
@if(module_exists('events'))

Latest Registered Accounts

    @php $users = new User(); @endphp @foreach($users->where('active',1)->order_by('created_on','desc')->limit(15)->get() as $user) @if(!$user->is_super_admin())
  • {{ucwords($user->first_name.' '.$user->last_name)}}

    {{ucwords($user->first_name.' '.$user->last_name)}} {{$user->extended->get()->country}}

  • @endif @endforeach
@endif
@push('custom-js') @endpush @endsection