{{ __("Investment History") }}
{{ __("List of your investment plan that you have invested.") }}
        
        @if(filled($investments))
            
                
                    
                        
            
            @if(filled($investments) && $investments->hasPages())
            
                
                    
                        
                
            
        @endif
    
| {{ __("ID") }} | {{ __("Plan") }} | {{ __("Date") }} | {{ __("Invested") }} | {{ __("Received") }} | {{ __("Status") }} | |
|---|---|---|---|---|---|---|
| {{ the_inv(data_get($invest, 'ivx')) }} | {{ data_get($invest, 'scheme.name') }} | {{ show_date(data_get($invest, 'term_start'), true) }} | {{ money(data_get($invest, 'amount'), data_get($invest, 'currency')) }} | {{ money(data_get($invest, 'received'), data_get($invest, 'currency')) }} | {{ __(ucfirst(data_get($invest, 'status'))) }} | 
                {{ $investments->appends(request()->all())->links('misc.pagination') }}
            
            @endif
        @else
            {{ __('No investment plan found.') }}