@extends('admin.layouts.app') @section('panel')
@forelse($stakingInvests as $stakingInvest) @empty @endforelse
@lang('User') @lang('Amount') @lang('Interest') @lang('Total Return') @lang('Start Date') @lang('End Date') @lang('Status')
{{ $stakingInvest->user->fullname }}
@{{ $stakingInvest->user->username }}
{{ showAmount($stakingInvest->invest_amount) }} {{ showAmount($stakingInvest->interest) }} {{ showAmount($stakingInvest->invest_amount + $stakingInvest->interest) }} {{ showDateTime($stakingInvest->created_at) }} {{ showDateTime($stakingInvest->end_at) }} @if ($stakingInvest->status == 1) @lang('Running') @else @lang('Completed') @endif
{{ __($emptyMessage) }}
@if ($stakingInvests->hasPages()) @endif
@endsection @push('breadcrumb-plugins') @if(!request()->routeIs('admin.users.deposits') && !request()->routeIs('admin.users.deposits.method')) @endif @endpush