@lang('app.latest_pay_stats')
| @lang('app.system') | @lang('app.sum') | @lang('app.user') | @lang('app.date') |
|---|---|---|---|
| {{ $stat->admin ? $stat->admin->username : $stat->system }} @if( $stat->value ) {{ $stat->value }} @endif | @if ($stat->type == 'in') {{ abs($stat->summ) }} @else {{ abs($stat->summ) }} @endif | {{ $stat->user ? $stat->user->username : '' }} | {{ $stat->created_at->format(config('app.time_format')) }} |
| @lang('app.no_data') | |||
@lang('app.latest_game_stats')
| @lang('app.game') | @lang('app.user') | @lang('app.balance') | @lang('app.bet') | @lang('app.win') | @lang('app.date') |
|---|---|---|---|---|---|
| {{ $stat->game }} | {{ $stat->user ? $stat->user->username : '' }} | {{ $stat->balance }} | {{ $stat->bet }} | {{ $stat->win }} | {{ date(config('app.time_format'), strtotime($stat->date_time)) }} |
| @lang('app.no_data') | |||||
@lang('app.latest_registrations')
| @lang('app.username') | @permission('users.balance.manage')@lang('app.balance') | @endpermission@lang('app.status') | |
|---|---|---|---|
| {{ $user->username ?: trans('app.n_a') }} | @permission('users.balance.manage'){{ $user->balance }} | @endpermission{{ date(config('app.time_format'), strtotime($user->last_login)) }} | |
| @lang('app.no_data') | |||
@lang('app.latest_bank_stat')
| @lang('app.name') | @lang('app.user') | @lang('app.old') | @lang('app.new') | @lang('app.sum') | @lang('app.date') |
|---|---|---|---|---|---|
| {{ $stat->name }} | {{ $stat->user ? $stat->user->username : '' }} | {{ $stat->old }} | {{ $stat->new }} | @if ($stat->type == 'in') {{ abs($stat->sum) }} @else {{ abs($stat->sum) }} @endif | {{ $stat->created_at->format(config('app.time_format')) }} |
| @lang('app.no_data') | |||||
Latest @lang('app.shift_stats')
| @lang('app.shift') | @endif@lang('app.user') | @lang('app.date_start') | @lang('app.date_end') | @if(!auth()->user()->hasRole('cashier'))@lang('app.credit') | @lang('app.in') | @lang('app.out') | @endif@lang('app.total') | @permission('games.in_out')@lang('app.banks') | @endpermission@lang('app.returns') | @lang('app.money') | @lang('app.in') | @lang('app.out') | @lang('app.total') | @if(auth()->user()->hasRole('admin'))@lang('app.profit') | @endif
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $stat->id }} | @endif{{ $stat->user ? $stat->user->username : '' }} | {{ date(config('app.date_format'), strtotime($stat->start_date)) }} | {{ $stat->end_date ? date(config('app.date_format'), strtotime($stat->end_date)) : '' }} | @if(!auth()->user()->hasRole('cashier')){{ $stat->balance }} | {{ $stat->balance_in }} | {{ $stat->balance_out }} | @endif{{ number_format ($stat->balance + $stat->balance_in - $stat->balance_out, 4, ".", "") }} | @permission('games.in_out') @php $banks = !$stat->end_date ? $stat->banks() : $stat->last_banks; @endphp{{ number_format ($banks, 4, ".", "") }} | @endpermission@if( !$stat->end_date ) {{ $stat->returns() }} @else {{ $stat->last_returns }} @endif | @php $money = $stat->users; if($stat->end_date == NULL){ $money = $summ; } @endphp{{ $money }} | {{ $stat->money_in }} | {{ $stat->money_out }} | @php $total = $stat->money_in - $stat->money_out; @endphp{{ number_format ($total, 4, ".", "") }} | @if(auth()->user()->hasRole('admin')){{ number_format ($stat->profit(), 4, ".", "") }} | @endif
| @lang('app.no_data') | ||||||||||||||