@extends('admin.layouts.master') @php use \App\Enums\UserStatus as uStatus; use \App\Enums\UserRoles as uRole; $isAdmin = (request('state') == 'teams' || is_route('admin.users.administrator')) ? true : false; $byTypes = (!request('state')) ? false : ucfirst(request('state')); $pageTitle = ($isAdmin) ? __('Administrator Users') : (($byTypes) ? __(':Type Users', ['type' => $byTypes]) : __('Users List')); $getRole = request()->get('role'); $getStatus = request()->get('status'); $getRegMethod = request()->get('regMethod'); $getHasBalance = request()->get('hasBalance'); $getEmailVerified = request()->get('emailVerified'); $getReferralJoin = request()->get('referralJoin'); $base_currency = base_currency(); @endphp @section('title', __("Aggregate")) @section('content')
{{-- nk-block-head --}}
{{ __('S No') }}
ID
Name
G Capital
T Deposit
T Aggt
Days
Deposit 0
Deposit 1
Date 1
Dep 2
Date 2
Dep 3
Date 3
Dep 4
Date 4
Dep 5
Date 5
Withdraw 1
Date 1
WD 2
Date 2
WD 3
Date 3
WD 4
Date 4
WD 5
Date 5
Agg 0
Agg 1
Agg 2
Agg 3
Agg 4
Agg 5
Agg 1
Agg 2
Agg 3
Agg 4
Agg 5
{{-- User list item --}} @foreach($aggre as $transaction)
{{ $transaction->sr_no }}
{{ $transaction->username }}
{{ $transaction->name }}
{{ number_format($transaction->capital ?? 0, 0, '.', ',') }}
{{ number_format($transaction->total_deposit ?? 0, 0, '.', ',') }}
{{ $transaction->aggregate }}%
{{ $transaction->monthDays }}
{{ number_format($transaction->deposit0 ?? 0, 0, '.', ',') }}
{{ number_format($transaction->deposit1 ?? 0, 0, '.', ',') }}
{{ $transaction->date1 }}
{{ number_format($transaction->deposit2 ?? 0, 0, '.', ',') }}
{{ $transaction->date2 }}
{{ number_format($transaction->deposit3 ?? 0, 0, '.', ',') }}
{{ $transaction->date3 }}
{{ number_format($transaction->deposit4 ?? 0, 0, '.', ',') }}
{{ $transaction->date4 }}
{{ number_format($transaction->deposit5 ?? 0, 0, '.', ',') }}
{{ $transaction->date5 }}
{{ number_format($transaction->withdraw1 ?? 0, 0, '.', ',') }}
{{ $transaction->date11 }}
{{ number_format($transaction->withdraw2 ?? 0, 0, '.', ',') }}
{{ $transaction->date22 }}
{{ number_format($transaction->withdraw3 ?? 0, 0, '.', ',') }}
{{ $transaction->date33 }}
{{ number_format($transaction->withdraw4 ?? 0, 0, '.', ',') }}
{{ $transaction->date44 }}
{{ number_format($transaction->withdraw5 ?? 0, 0, '.', ',') }}
{{ $transaction->date55 }}
{{ $transaction->aggregate0 }}%
{{ $transaction->aggregated1 }}%
{{ $transaction->aggregated2 }}%
{{ $transaction->aggregated3 }}%
{{ $transaction->aggregated4 }}%
{{ $transaction->aggregated5 }}%
{{ $transaction->aggregatew1 }}%
{{ $transaction->aggregatew2 }}%
{{ $transaction->aggregatew3 }}%
{{ $transaction->aggregatew4 }}%
{{ $transaction->aggregatew5 }}%
@endforeach {{-- User List item-end --}}
{{-- Pagination --}}
{{$aggre->links()}}
{{-- nk-block --}}
@endsection @push('scripts') @endpush