@extends('admin.layouts.app') @section('panel')
@forelse($poolInvests as $poolInvest) @empty @endforelse
@lang('User') @lang('Pool Name') @lang('Invest Amount') @lang('Interest Given') @lang('Status')
{{ $poolInvest->user->fullname }}
@{{ $poolInvest->user->username }}
{{ __($poolInvest->pool->name) }} {{ showAmount($poolInvest->invest_amount) }} @if ($poolInvest->pool->share_interest) {{ showAmount($poolInvest->invest_amount * $poolInvest->pool->interest / 100) }} @else @lang('No return yet!') @endif @if ($poolInvest->status == 1) @lang('Running') @else @lang('Completed') @endif
{{ __($emptyMessage) }}
@if ($poolInvests->hasPages()) @endif
@endsection @push('breadcrumb-plugins') @if (!request()->routeIs('admin.users.deposits') && !request()->routeIs('admin.users.deposits.method')) @endif @endpush