@extends('admin.layouts.master') @section('title',__('Dashboard')) @section('content')

{{__('Total Users')}}

{{$total_user}}

{{__('Active Users')}}

{{$total_ac_user}}

{{__('Banned Users')}}

{{$total_bn_user}}

{{__('Today Join User')}}

{{$userRecord['todayJoin']}}

{{__('Today Invest')}}

{{$today_invest}}

{{__('Running Invest')}}

{{$running_invest}}

{{__('Complete Invest')}}

{{$complete_invest}}

{{__('Total Invest')}}

{{round($total_invest,2)}} {{$general->currency}}

{{__('Total Plans')}}

{{$total_plan}}

{{__('Total Interest')}}

{{$total_earn}}

{{__('Today\'s Deposit')}}

{{round($today_deposit,2)}} {{$general->currency}}

{{__('Total Deposit')}}

{{round($total_deposit,2)}} {{$general->currency}}

{{__('Today Withdraw')}}

{{round($today_withdraw,2)}} {{$general->currency}}

{{__('Total Withdraw')}}

{{round($total_withdraw,2)}} {{$general->currency}}

{{__('Pending Withdraw')}}

{{$panding_withdraw}}

{{__('Reject Withdraw')}}

{{$reject_withdraw}}

{{--
{{__('Invest ROI Plans')}}
@foreach($roi_plans as $key => $data)
{{$data->name}}
{{$data->period}} @lang('Times')
@endforeach
{{__('Invest Fixed Plans')}}
@foreach($fixed_plans as $key => $data)
{{$data->name}}
{{($data->fixed_amount*$data->percent)/100}}{{$general->currency}}
@endforeach
--}}

{{__('This Month Invest')}}

{{round($total_invest_month,2)}} {{$general->currency}}

{{__('This Month Deposit')}}

{{round($total_deposit_month,2)}} {{$general->currency}}

{{__('This Month Withdraw')}}

{{round($total_withdraw_month,2)}} {{$general->currency}}

{{__('This Month Profit')}}

{{round($month_earn,2)}} {{$general->currency}}

{{__('Latest User')}}
@foreach($latestUser as $data) @endforeach
{{__('Name')}} {{__('Email')}} {{__('Balance')}} {{__('Status')}} {{__('Action')}}
@lang($data->name)
@lang($data->email) {{getAmount($data->balance)}} {{$general->currency}} @if($data->status == 1) @lang('Active') @else @lang('Inactive') @endif
@endsection @section('script') @stop