@extends(template().'layout.master2') @section('content2')
@forelse ($payments as $plan) @empty @endforelse
{{ __('Plan Name') }} {{ __('Get Paid') }} {{ __('Interest') }} {{ __('Invest Amount') }} {{ __('Invest Date') }} {{ __('Next Payment Date') }} {{ __('Payment Status') }}
{{ @$plan->plan->plan_name }} @if ($plan->plan->return_for == 1) {{ isset($plan->pay_count) ? $plan->pay_count : $plan->plan->how_many_time }} {{ __(' Out of ') }} {{ $plan->plan->how_many_time }} {{ __('Times') }} @else {{ __('Lifetime') }} @endif {{ number_format($plan->interest_amount, 2) }} {{ @$general->site_currency }} {{ number_format($plan->amount, 2) }} {{ @$general->site_currency }} {{ $plan->created_at }} @if ($plan->payment_status == 1) {{ @$plan->next_payment_date }} @else {{'N/A'}} @endif @if ($plan->payment_status == 1) {{ __('Success') }} @elseif($plan->payment_status == 2) {{ __('Pending') }} @elseif($plan->payment_status == 3) {{ __('Rejected') }} @endif
{{ __('No Data Found') }}
@endsection