@extends('backend.layouts.main')
@section('title')
{{ __('Dashboard') }} :: {{ __('Payments') }}
@endsection
@section('content')
@include('backend.pages.dashboard.tabs')
{{ $withdrawals['count'] }}
{{ $withdrawals['max'] }}
{{ $withdrawals['total'] }}
{{ __('Deposits by day') }}
{{ __('Withdrawals by day') }}
{{ __('Deposits by currency') }}
{{ __('Withdrawals by currency') }}
{{ __('Top deposits') }}
@if($top_deposits->isEmpty())
{{ __('There are no deposits yet.') }}
@else
| {{ __('User') }} |
{{ __('Amount') }} |
{{ __('Created') }} |
@foreach($top_deposits as $deposit)
|
{{ $deposit->account->user->name }}
|
{{ $deposit->_amount }} |
{{ $deposit->updated_at->diffForHumans() }} |
@endforeach
@endif
{{ __('Top withdrawals') }}
@if($top_withdrawals->isEmpty())
{{ __('There are no withdrawals yet.') }}
@else
| {{ __('User') }} |
{{ __('Amount') }} |
{{ __('Created') }} |
@foreach($top_withdrawals as $withdrawal)
|
{{ $withdrawal->account->user->name }}
|
{{ $withdrawal->_amount }} |
{{ $withdrawal->updated_at->diffForHumans() }} |
@endforeach
@endif
@endsection