@extends('user.master') @section('title', trans('general.dashboard')) @section('content')

@lang('general.dashboard')

@lang('user.used.title')

@lang('user.used.players') {{ $statistics['players']['used'] }}/ {{ $statistics['players']['total'] }}
@lang('user.used.storage') @php $used = $statistics['storage']['used']; $total = $statistics['storage']['total']; @endphp @if ($used > 1024) {{ round($used / 1024, 1) }}/ {{ is_string($total) ? $total : round($total / 1024, 1) }} MB @else {{ $used }}/ {{ $total }} KB @endif

@lang('user.cur-score')

{{ $user->getScore() }}

@lang('user.score-notice')

@lang('user.announcement')

{!! $announcement !!}
@endsection