@extends('layouts.admin') @section('css') @endsection @section('content')

Investments @if(!blank($client)) ({{ $client->email }}) @endif

@if(!blank($client))

Back to User Page

@endif
@include('components.admin.error-message')
@foreach($investments as $investment) @endforeach
Plan Amount Profit Auto top up Initiated At Status Actions
{{ $investment->plan?->name }} {{ number_format($investment->amount,2,'.',',') }} {{ $client?->currency }} {{ number_format($investment->roi,2,'.',',') }} {{ $client?->currency }} {{ ucfirst($investment->autot) }} {{ \Carbon\Carbon::parse($investment->created_at)->toDayDateTimeString() }} {{ strtoupper($investment->status) }}
Showing {{ $investments->firstItem() ?? 0 }} to {{ $investments->lastItem() ?? 0 }} of {{ $investments->total() }} entries
{{ $investments->links() }}
@endsection @section('script') @endsection