@extends('layouts.app') @push('styles') @endpush @section('content') @include('partials.navbar')

{{ $investor->name }}

{{ $investor->city ?? '' }} {{ $investor->country ? ', ' . $investor->country : '' }}
@if ($investor->is_active) Active Investor @else Inactive @endif
{{ $investor->type ?? 'Investor' }} @if ($investor->industry) {{ $investor->industry }} @endif @if ($investor->stage_focus) @foreach (explode(',', $investor->stage_focus) as $stage) {{ trim($stage) }} @endforeach @endif
Quick Info
Location {{ $investor->city ?? '' }} {{ $investor->country ? ', ' . $investor->country : '' }}
Investor Type {{ $investor->type ?? 'N/A' }}
Fund Size {{ $investor->fund_size ?? 'N/A' }}
Portfolio Size {{ $investor->portfolio_size ?? 'N/A' }}
{{--
Website @if ($investor->website) Open Link @else N/A @endif
--}}
About Investor

{{ $investor->description ?? 'No description available for this investor.' }}

Investment Overview

{{ $investor->funds->count() }}

Total Investments

${{ number_format($investor->funds->sum('funding_amount')) }}

Total Funding

{{ $investor->portfolio_size ?? 'N/A' }}

Active Startups
Recent Activity
@if ($investor->funds->count())
    @foreach ($investor->funds->take(5) as $fund)
  • {{ $fund->startup->name ?? $fund->startup_name }}
    {{ $fund->funding_stage }}
    ${{ number_format($fund->funding_amount) }}
  • @endforeach
@else {{ $investor->recent_activity }} @endif
{{--

🌍 Investor Funding

Track startup investments across countries
--}} {{--
Total Funding
${{ number_format($totalFunding) }}
Total Deals
{{ $totalDeals }}
Countries
{{ $countriesCount }}
Avg Deal
${{ number_format($avgDeal, 2) }}
--}}

Africa Tech Investment Landscape

@forelse ($fundings as $key => $item) {{-- --}} @empty @endforelse
# Lead Investor Recipient Industry Country Company Type Year Round Amount Investor Website
{{ $key + 1 }}
{{ $item->investor_name }}
{{ $item->company_name }} {{ $item->industry }} {{ $item->country }} {{ $item->company_type }} {{ $item->funding_year }} {{ $item->funding_round }} ${{ number_format($item->funding_amount) }} @if ($item->company_website) Visit Website @else N/A @endif @if ($investor->website) VIEW @endif
No funding records found


Tracking Africa’s Startup Ecosystem Growth

{{--
Top Countries
    Legend
    10M+
    1M+
    100K+
    Low
    --}} {{-- --}}


    @push('scripts') @endpush @endsection