@extends($activeTemplate . 'layouts.master') @section('content')
@forelse($scheduleInvests as $scheduleInvest) @php $plan = $scheduleInvest->plan; $interest = $plan->interest_type == 1 ? ($scheduleInvest->amount * $plan->interest) / 100 : $plan->interest; @endphp @empty @endforelse
@lang('Plan') @lang('Return') @lang('Wallet') @lang('Remaining Times') @lang('Next Invest') @lang('Action')
{{ __($scheduleInvest->plan->name) }}
{{ showAmount($scheduleInvest->amount) }}
{{ showAmount($interest) }} @lang('every') {{ $plan->timeSetting->name }}
@lang('for') @if ($plan->lifetime) @lang('Lifetime') @else {{ $plan->repeat_time }} {{ $plan->timeSetting->name }} @endif @if ($plan->capital_back) + @lang('Capital') @endif
{{ __(keyToTitle($scheduleInvest->wallet)) }} {{ $scheduleInvest->rem_schedule_times }} {{ $scheduleInvest->next_invest ? showDateTime($scheduleInvest->next_invest) : '----' }} @if ($scheduleInvest->rem_schedule_times) @if ($scheduleInvest->status) @else @endif @endif
{{ __($emptyMessage) }}
@if ($scheduleInvests->hasPages())
{{ paginateLinks($scheduleInvests) }}
@endif
@endsection @push('script') @endpush