@extends($activeTemplate . 'layouts.master') @section('content')

@lang('Schedule Investment')

@lang('My Schedule Investment')

@lang('Easily manage your scheduled investments by accessing detailed information such as upcoming investment dates, remaining investment times, and the option to enable or disable each schedule.')

@forelse($scheduleInvests as $scheduleInvest) @php $plan = $scheduleInvest->plan; $interest = $plan->interest_type == 1 ? ($scheduleInvest->amount * $plan->interest) / 100 : $plan->interest; @endphp

@lang('Plan + Invest Amount')

{{ __($scheduleInvest->plan->name) }} | {{ showAmount($scheduleInvest->amount) }}

@lang('Return')

{{ 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

@lang('Wallet')

{{ __(keyToTitle($scheduleInvest->wallet)) }}

@lang('Remaining')

{{ $scheduleInvest->rem_schedule_times }} @lang('times')

@lang('Next Invest')

{{ $scheduleInvest->next_invest ? showDateTime($scheduleInvest->next_invest) : '----' }}

@if ($scheduleInvest->rem_schedule_times) @if ($scheduleInvest->status) @else @endif @endif
@empty

{{ __($emptyMessage) }}

@endforelse
@if ($scheduleInvests->hasPages())
{{ paginateLinks($scheduleInvests) }}
@endif
@endsection @push('style') @endpush @push('script') @endpush