@extends('layouts.admin') @section('content')
User that logged in for the past 24hrs
| Name | IP | {{--Location | --}}|
|---|---|---|---|
| {{$uu->first_name}} | {{$uu->email}} | {{$uu->login_ip}} | {{--@php $details = json_decode(file_get_contents("http://ipinfo.io/".$uu->login_ip."/json")); echo $details->city.", ".$details->country; @endphp | --}}
Total new registered users since today
Total User that have logon since the past 7 days
| Name | IP | {{--Location | --}}Last Login | |
|---|---|---|---|---|
| {{$uu->first_name}} | {{$uu->email}} | {{$uu->login_ip}} {{-- | @php echo $details->city.", ".$details->country; @endphp | --}}{{$uu->updated_at->DiffForHumans()}} |
Total new registered users since 7 days ago
| Name | IP | {{--Location | --}}Joined | |
|---|---|---|---|---|
| {{$uu->first_name}} | {{$uu->email}} | {{$uu->login_ip}} | {{--@php $details = json_decode(file_get_contents("http://ipinfo.io/".$uu->login_ip."/json")); echo $details->city.", ".$details->country; @endphp | --}}{{$uu->created_at->DiffForHumans()}} |
Total Orders for the past 24 hours
| S/N | User Email | Order No | Payment Ref | Payment Method | Amount | Payment Status |
|---|---|---|---|---|---|---|
| {{$sp->id}} | {{substr($sp->user->email,0,15)}}.. | {{$sp->order_No}} | {{$sp->payment_ref}} | {{$sp->payment_method}} | {{number_format($sp->amount,2)}} | @if($sp->is_paid == 1) Paid @else Pending @endif |
Total Orders for the past 7 days
| S/N | User Email | Order No | Payment Ref | Payment Method | Amount | Payment Status |
|---|---|---|---|---|---|---|
| {{$sp->id}} | {{substr($sp->user->email,0,15)}}.. | {{$sp->order_No}} | {{$sp->payment_ref}} | {{$sp->payment_method}} | {{number_format($sp->amount,2)}} | @if($sp->is_paid == 1) Paid @else Pending @endif |