@extends('agent.layouts.main') @section('panel')
@forelse($investmentLogs as $investmentLog) @empty @endforelse
@lang('Initiated At') @lang('TRX') @lang('User') @lang('Plan') @lang('Amount')
{{ showDateTime($investmentLog->created_at) }} {{ $investmentLog->trx }} {{ $investmentLog->user->fullname ?? '' }} {{ $investmentLog->plan->name }} {{ getCurrencySymbol() }}{{shortAmount($investmentLog->amount) }}
{{ __('No Data Found')}}
{{ $investmentLogs->appends(request()->all())->links() }}
@endsection