@extends('admin.layouts.app') @section('panel')
@lang('This') @lang('invest')
@lang('Total Investments')
@lang('Deposit Wallet')
{{ showAmount(($widget['invest_deposit_wallet'] / $widget['total_invest']) * 100, currencyFormat: false) }}%
@lang('Interest Wallet')
{{ showAmount(($widget['invest_interest_wallet'] / $widget['total_invest']) * 100, currencyFormat: false) }}%
@lang('Should Pay')
@lang('Paid') ({{ showAmount(($widget['profit_paid'] / ($widget['profit_paid'] + $widget['profit_to_give'])) * 100, currencyFormat: false) }}%)
{{ showAmount($widget['profit_paid']) }} / {{ showAmount($widget['profit_paid'] + $widget['profit_to_give']) }}
*@lang('This statistics showing data excluding lifetime investment.')
@lang('Start Date')
{{ showDateTime($invest->created_at, 'd M, y h:i A') }}
@lang('End Date')
{{ showDateTime($invest->created_at, 'd M, y h:i A') }}
@lang('Net Profit')
{{ $invest->period != -1 ? showAmount($invest->period * $invest->interest) . ' ' . gs('cur_text') : '---' }}