@extends('layouts.admin') @section('content')
| ID | Name | Telegram | Balance | Status |
|---|---|---|---|---|
| {{ $user->id }} | {{ $user->name ?? '-' }} | {{ $user->telegram_id ?? '-' }} | ${{ number_format((float) ($user->wallet->balance ?? 0), 2) }} | @if($user->is_banned) Banned @else Active @endif |
|
@if($user->is_banned)
@else
@endif
|
||||