芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/bit-alphas-ltd.com/user/project/resources/views/admin/dashboard.blade.php
@extends('layouts.admin') @section('content')
{{ __('Dashboard') }}
{{ __('Dashboard') }}
@if(Session::has('cache'))
×
{{ Session::get("cache") }}
@endif
{{ __('Active Customers') }}
{{count($acustomers)}}
{{ __('Blocked Customers') }}
{{ count($bcustomers) }}
{{ __('Total Blogs') }}
{{ count($blogs) }}
{{ __('Total Plans') }}
{{ count($plans) }}
{{ __('Total Deposits') }}
{{ count($deposits) }}
{{ __('Total Deposit Amount') }}
{{ round($depositAmount,2) }} {{ $currency->name}}
{{ __('Total Invest') }}
{{ count($invests) }}
{{ __('Total Invest Amount') }}
{{ round($investsAmount,2) }} {{ $currency->name}}
{{ __('Total Balance Transfer') }}
{{ count($transfers) }}
{{ __('Total Balance Transfer Amount') }}
{{ round($transfersAmount,2) }} {{ $currency->name}}
{{ __('Total Withdraw Amount') }}
{{ round($withdrawAmount,2) }} {{ $currency->name}}
{{ __('Total Withdraw Charge Amount') }}
{{ round($withdrawChargeAmount,2) }} {{ $currency->name}}
{{ __('Total Request Money') }}
{{ round($requestAmount,2) }} {{ $currency->name}}
{{ __('Total Referral Bonus') }}
{{ round($bonus,2) }} {{ $currency->name}}
{{ __('Total Transactions') }}
{{ count($transactions) }}
{{ __('Total Tickets') }}
{{ count($tickets) }}
@lang('Recent Joined Users')
@if (count($users)>0)
@lang('Serial No')
@lang('Name')
@lang('Email')
@lang('Status')
@lang('Action')
@foreach ($users as $key=>$data)
{{ $loop->iteration}}
{{ $data->name }}
{{ $data->email }}
{{ $data->is_banned == 0 ? 'activated' : 'deactivated'}}
@lang('Detail')
@endforeach
@else
@lang('NO USER FOUND')
@endif
@endsection @section('scripts') @endsection