@extends('layouts.admin') @section('title', 'User: ' . $user->name) @section('content')
{{ $user->email }}
Phone
{{ $user->phone ?? '-' }}
Referral Code
{{ $user->referral_code }}
Balance
{{ number_format($user->wallet->balance ?? 0, 4) }}
| Type | Amount | Status | Date |
|---|---|---|---|
| {{ str_replace('_',' ',$txn->type) }} | {{ number_format($txn->amount, 4) }} | {{ $txn->status }} | {{ $txn->created_at->format('d M Y H:i') }} |