@extends('layouts.user') @push('css') @endpush @section('contents')
@if ($gs->kyc) @if (auth()->user()->kyc_info == NULL && auth()->user()->kyc_status == 0)

{{ __('You have a information to submit for kyc verification.') }}

@elseif(auth()->user()->kyc_status == 2)

{{ __('Your submitted kyc informations rejected.') }}

@elseif(auth()->user()->kyc_status != 1)

{{ __('Your submitted informations under reviewing.') }}

@else
@endif @endif
wallet
@lang('Main Balance')
{{ showprice(auth()->user()->balance) }}
wallet
@lang('Interest Balance')
{{ showprice(auth()->user()->interest_balance) }}
wallet
@lang('Total Deposit')
{{ showprice($total_deposits) }}
wallet
@lang('Total Invest')
{{ showprice($total_invests) }}
wallet
@lang('Total Payout')
{{ showprice($total_payouts) }}
wallet
@lang('Total Refferal Bonus')
{{ showprice($total_referral_bonus) }}
wallet
@lang('Total Transaction')
{{ showprice($total_transactions) }}
wallet
@lang('Total Ticket')
{{ $total_tickets }}
@lang('Referral URL')
@if (count($transactions) == 0) @else @foreach($transactions as $key=>$data) @php $from = App\Models\User::where('id',$data->user_id)->first(); @endphp @endforeach @endif
@lang('No') @lang('Type') @lang('Txnid') @lang('Amount') @lang('Date')

{{__('No Data Found')}}

{{ $loop->iteration }}
{{ strtoupper($data->type) }}
{{ $data->txnid }}

{{ showprice($data->amount,$currency) }}

{{date('d M Y',strtotime($data->created_at))}}
@endsection @push('js') @endpush