@extends('layouts.app') @section('content')

Investment Plans

@csrf

My Investments

@foreach($investments as $investment) @endforeach
PlanAmountDaily ProfitStatusEnds At
{{ $investment->plan->name }} ${{ number_format($investment->amount, 2) }} ${{ number_format($investment->daily_profit, 2) }} {{ ucfirst($investment->status) }} {{ $investment->ends_at }}
{{ $investments->links() }}
@endsection