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

Africa Startup Funding

Country: All @foreach ($countries as $c) {{ $c }} @endforeach
Sector: All @foreach ($sectors as $s) {{ $s }} @endforeach
Stage: All @foreach ($stages as $st) {{ $st }} @endforeach
Reset
@foreach ($funds as $fund)
{{ $fund->sector }}
{{ $fund->startup_name }} raises ${{ $fund->funding_amount }}
{{ $fund->city }} {{ $fund->country }}

{{ \Illuminate\Support\Str::limit($fund->ai_summary ?? $fund->description, 100) }}

Read More →
@endforeach
@include('components.investors')
🔥 Trending Startups
@forelse ($trendingFunds as $index => $item) @empty @endforelse
# Startup Funding
{{ $index + 1 }} {{ $item->startup_name }} ${{ number_format($item->funding_amount) }}
No trending startups available
🌍 Funding by Country
@forelse ($countriesData as $index => $item) @empty @endforelse
# Country Total Startups Total Funding
{{ $index + 1 }} {{ $item->country }} {{ $item->total_startups }} ${{ number_format($item->total_funding) }}
No data available
Latest News
@forelse ($news as $newsItem)
{{ $newsItem->title }}
{{ $newsItem->source ?? 'Unknown Source' }} • {{ \Carbon\Carbon::parse($newsItem->published_date)->format('M d, Y') }}
@empty

No news available.

@endforelse
@include('partials.africa-refining-map')
{{ $funds->links('pagination::bootstrap-5') }}


@endsection