@extends('layouts.admin') @section('content')
TRACKS of {{$account->uqid}}
@if(count($track)==0) @endif @foreach ($track as $item) @php $diff = ($now->diffInSeconds($item->created_at)); $daily = $item->speed*$gnl->daily; $perSec = $daily/86400; $total = $diff*$perSec; $balance = $total - $item->withdraw; @endphp @endforeach
SPEED BALANCE WITHDRAW START AT STATUS
NO DATA AVAILABLE
{{$item->speed}} DH/S {{round($balance,8)}} {{$gnl->cur}} {{round($item->withdraw,8)}} {{$gnl->cur}} {{$item->created_at}} {{$item->status==1?'Active':'Expired'}}

DEPOSIT of {{$account->uqid}}
@if(count($deposit)==0) @endif @foreach ($deposit as $item) @endforeach
AMOUNT WALLET TRX ID TRX TIME
NO DATA AVAILABLE
{{$item->amount}} {{$gnl->cur}} {{$item->wallet}} {{$item->trx}} {{$item->updated_at}}

PAYOUTS of {{$account->uqid}}
@if(count($withdraw)==0) @endif @foreach ($withdraw as $item) @endforeach
AMOUNT WALLET TRX ID TRX TIME
NO DATA AVAILABLE
{{$item->amount}} {{$gnl->cur}} {{$item->account->wallet}} {{$item->trx}} {{$item->created_at}}
@endsection