@extends('admin.layouts.master') @section('title') @lang('translation.Dashboards') @endsection @section('content') @component('admin.components.breadcrumb') @slot('li_1') Dashboards @endslot @slot('title') Dashboard @endslot @endcomponent @php $user = $data['user']; @endphp

Profile №{{$user->id}}

{{$user->name ?? $user->email}}

@if($user->admin == 1) Администратор @else Пользователь @endif

@if($user->ban == 1)@else@endif

Edit Profile

Аккаунты

@foreach($data['accounts'] as $acc) @endforeach
# Пользователь Дата регистрации Действия
{{$acc->id}} admin == 1) class="text-danger" @endif>{{$acc->name}} {{date('d.m.y в H:i:s', strtotime($acc->created_at))}} @if($acc->ban == 0) @else @endif
{{ $data['accounts']->links() }}

Пополнения

@foreach($data['deps'] as $d) @php $u = \App\User::where('id', $d->user_id)->first(); @endphp @endforeach
# Пользователь Система Сумма Дата Действия
{{$d->id}} admin == 1) class="text-danger" @endif>{{$u->name}} {{number_format($d->sum, 2, ',', ' ')}} {{date('d.m.y в H:i:s', strtotime($d->created_at))}} @if($d['status'] == 0)@endif
{{ $data['deps']->links() }}

Выводы

@foreach($data['withdraws'] as $w) @php $u = \App\User::where('id', $w->user_id)->first(); @endphp @endforeach
# Пользователь Система Сумма Кошелек Дата Действия
{{$w->id}} admin == 1) class="text-danger" @endif>{{$u->name}} {{$w->ps}} {{number_format($w->sum, 2, ',', ' ')}} {{$w->wallet}} {{date('d.m.y в H:i:s', strtotime($w->created_at))}} @if($w['status'] == 0)@endif
{{ $data['withdraws']->links() }}

История баланса

@foreach($data['history'] as $h) @endforeach
Тип Действие Баланс до Баланс после Изменение баланса Дата
{{$h->type}} {{number_format($h->balance_before, 2, ',', ' ')}} {{number_format($h->balance_after, 2, ',', ' ')}} {{number_format(($h->balance_before - $h->balance_after), 2, ',', ' ')}} {{date('d.m.y в H:i:s', strtotime($h->date))}}
{{ $data['history']->links() }}
@endsection @section('script') @endsection