@extends('layouts.landing') @section('title', 'Investments') @section('content')

Transaction History

{{-- --}} @if (count($investmentDetails) > 0) {{-- @php $total = 0; @endphp --}} @foreach ($investmentDetails as $key => $inv) {{-- @php $total += $inv->slot_bought; @endphp --}} {{-- --}} @endforeach @endif
TRANSACTION DATE NO OF SHARES AMOUNTTOTAL SHARES
{{ Carbon\Carbon::parse($inv->created_at)->format('Y-M-d H:i') }} {{ $inv->slot_bought }} ₦{{ number_format($inv->amount, 2) }}{{ $total }}
{{ $investmentDetails->links('vendor.pagination.bootstrap-4') }} @if (count($investmentDetails) < 1)
No records to display
@endif
@endsection