@extends('layouts.admin') @section('title', 'User Details') @section('page-title', 'User: ' . $user->name) @section('content')
{{ $user->email }}
{{ $user->is_active ? 'Active' : 'Suspended' }}{{ $user->referral_code }}| Survey | Reward | Date |
|---|---|---|
| {{ $c->survey->title ?? 'Deleted Survey' }} | ${{ number_format($c->reward, 2) }} | {{ $c->created_at->format('M d, Y') }} |
| No completions. | ||
| Type | Amount | Status | Date |
|---|---|---|---|
| {{ ucfirst($p->type) }} | ${{ number_format($p->amount, 2) }} | {{ ucfirst($p->status) }} | {{ $p->created_at->format('M d, Y') }} |
| No transactions. | |||