@extends('layouts.admin') @section('title', 'Dashboard') @section('content') {{-- Stat Cards --}}
| User | Amount | Method | Account | Date | Actions |
|---|---|---|---|---|---|
{{ $w->user->name }} {{ $w->user->email }} |
GH₵{{ number_format($w->net_amount,2) }} {{ number_format($w->points_deducted) }} pts |
{{ strtoupper($w->method) }} | {{ $w->account_name }} {{ $w->account_number }} |
{{ $w->created_at->diffForHumans() }} |
|
| User | Points | Level | Joined |
|---|---|---|---|
{{ $u->name }} {{ $u->email }} |
{{ number_format($u->points) }} | {{ $u->level }} | {{ $u->created_at->diffForHumans() }} |
| Type | User | Action | Time |
|---|---|---|---|
| {{ str_replace('_',' ',strtoupper($f->type)) }} | {{ $f->user?->name ?? 'Unknown' }} {{ $f->ip_address }} |
{{ $f->action_taken }} | {{ $f->created_at->diffForHumans() }} |