@extends('layouts.admin') @section('title', 'Quản lý kim cương - MU Admin Panel') @section('styles') @endsection @section('content')

💰 Danh sách tài khoản ({{ $accounts->total() }} tài khoản)

@if($accounts->count() > 0)
@foreach($accounts as $account) @endforeach
ID Tên tài khoản Email RealMoney Money (Zen) Tổng Trạng thái Ngày tạo Hành động
{{ $account->ID }} {{ $account->UserName }} {{ $account->Email ?: 'N/A' }} {{ number_format($account->yuanbao) }} {{ number_format($account->money) }} {{ number_format($account->yuanbao + $account->money) }} {{ $account->Status == 1 ? 'Hoạt động' : 'Bị khóa' }} {{ $account->CreateTime ? date('d/m/Y', strtotime($account->CreateTime)) : 'N/A' }}
{{ $accounts->appends(request()->query())->links('pagination.custom') }} @else

💰 Không tìm thấy tài khoản nào

Hãy thử thay đổi từ khóa tìm kiếm

@endif
@endsection