@extends('admin.layouts.layout') @section('content')
@if (session()->has('success'))

  {{ session('success') }}

@endif
Displaying all investments for {{$user->fname.' '.$user->lname}}
@forelse($investments as $investment) @empty @endforelse
Plan Capital Profit Expire date Last updated Edit Delete
{{$investment->plan}} ${{number_format($investment->capital, 2)}} ${{number_format($investment->profit, 2)}} {{ $investment->expire_date->diffForHumans() }} {{$investment->updated_at->diffForHumans()}} id)}}' class='btn btn-primary btn-block'>   Edit Invetment
@csrf
@endsection