@extends('layouts.admin') @section('title') @lang('Admin Dashboard') @endsection @section('breadcrumb')

@lang('Dashboard')

@endsection @section('content') @if (access('dashboard info'))

@lang('Total User')

{{$totalUser}}

@lang('Total Merchant')

{{$totalMerchant}}

@lang('Total Currency')

{{$totalCurrency}}

@lang('Total Country')

{{$totalCountry}}

@lang('Total Role')

{{$totalRole}}

@lang('Total Staff')

{{$totalStaff}}

@lang('Total Profit')

{{$totalProfit}} {{$gs->curr_code}} *

@lang('Default Currency')

{{$gs->curr_code}} *
{{$gs->curr_sym}}

@lang('Total Deposit')

{{$gs->curr_sym}}{{$totalDeposit}}
{{$gs->curr_sym}}

@lang('Total Withdraw')

{{$gs->curr_sym}}{{$totalWithdraw}}
@endif

@lang('Recent Registered Users')

@forelse ($recentUsers as $key => $user) @if (access('edit user')) @else @endif @empty @endforelse
@lang('Name') @lang('Email') @lang('Country') @lang('Status') @lang('Action')
{{$user->name}} {{$user->email}} {{$user->country}} @if($user->status == 1) @lang('active') @elseif($user->status == 2) @lang('banned') @endif @lang('Details') N/A
@lang('No Data Found')

@lang('Recent Registered Merchants')

@forelse ($recentMerchants as $key => $user) @if (access('edit merchant')) @else @endif @empty @endforelse
@lang('Name') @lang('Email') @lang('Country') @lang('Status') @lang('Action')
{{$user->name}} {{$user->email}} {{$user->country}} @if($user->status == 1) @lang('active') @elseif($user->status == 2) @lang('banned') @endif @lang('Details') N/A
@lang('No Data Found')
@endsection