@extends('panel.layouts.base') @section('seo_description', __('panel/auth/dashboard.description')) @section('title',__('panel/auth/dashboard.title',['userName' => $user->name])) @push('css') @endpush @if ($errors->register_modal->any()) @foreach ($errors->register_modal->all() as $error) @endforeach @endif @section('content.top')
{{ __('panel/auth/dashboard.top.0') }}
{{ $accounts_count ?? 0 }}
{{ __('panel/auth/dashboard.top.5') }}
{{ __('panel/auth/dashboard.top.1') }}
{{ $characters_count ?? 0 }}
{{ __('panel/auth/dashboard.top.2') }}
{{ __('panel/auth/dashboard.top.3') }}
{{ formatNumber($user->balance) }}

@endsection @section('content.main') @if($accounts->isNotEmpty()) @slot('thead') № {{ __('panel/auth/dashboard.main.1') }} {{ __('panel/auth/dashboard.main.2') }} {{ __('panel/auth/dashboard.main.3') }} {{ __('panel/auth/dashboard.main.4') }} @endslot @slot('tbody') @foreach($accounts as $account) {{ $loop->iteration }} {{ $account->login }} {{ $account->accountsDateStart ? \Illuminate\Support\Carbon::parse($account->accountsDateStart->created_at)->translatedFormat('d F | H:i') : '-' }}
{{ __('panel/auth/dashboard.main.13') }}
{{ __('panel/auth/dashboard.main.14') }}

{{ __('panel/auth/dashboard.main.8') }}
@endforeach @endslot
@else {{ __('panel/auth/dashboard.top.5') }} @endif
@endsection @if(config("game.download.enableDownloadMenu", '0')) @include('panel.auth.dashboard.txt') @endif