@extends('layouts.admin') @section('title', 'Quản lý tài khoản - MU Admin Panel') @section('content')
Quản lý tài khoản người dùng trong hệ thống game MU Online
| ID | Tên đăng nhập | Trạng thái | Kim cương web | Kim cương game | Nhân vật | Đăng ký | Thao tác | |
|---|---|---|---|---|---|---|---|---|
| #{{ $account->ID }} |
{{ $account->UserName }}
{{ $account->Email ?: 'Chưa có email' }}
{{ $account->Status == 1 ? '✅ Hoạt động' : '❌ Bị khóa' }}
💎W: {{ number_format($account->web_coins ?? 0) }}
💎G: {{ number_format($account->total_money ?? 0) }}
NV: {{ $account->characters_count ?? 0 }}
|
{{ $account->Email ?: 'Chưa có email' }} | {{ $account->Status == 1 ? 'Hoạt động' : 'Bị khóa' }} |
{{ number_format($account->web_coins ?? 0) }}
Kim cương web
|
{{ number_format($account->total_money ?? 0) }}
Kim cương game
|
{{ $account->characters_count ?? 0 }}
nhân vật
|
{{ $account->CreateTime ? \Carbon\Carbon::parse($account->CreateTime)->format('d/m/Y') : 'N/A' }}
{{ $account->CreateTime ? \Carbon\Carbon::parse($account->CreateTime)->format('H:i') : '' }}
|