@extends('admin.layouts.app') @section('panel')
{{ $totalInvestCount }}

@lang('Total Invest Count')

{{ showAmount($totalInvestAmount) }}

@lang('Total Invest')

{{ showAmount($totalPaid) }}

@lang('Total Interest Paid')

@forelse($invests as $invest) @empty @endforelse
@lang('User') @lang('Plan Name') @lang('Amount') @lang('Interest') @lang('Interest Paid') @lang('Status')
{{ $invest->user->fullname }}
@{{ $invest->user->username }}
{{ __($invest->plan->name) }} {{ showAmount($invest->amount) }} {{ showAmount($invest->interest) }} {{ showAmount($invest->paid) }} @php echo $invest->statusBadge @endphp
{{ __($emptyMessage) }}
@if ($invests->hasPages()) @endif
@endsection @push('script-lib') @endpush @push('style-lib') @endpush @push('script') @endpush