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

{{ $fund->startup_name }}

{{ $fund->title }} @if ($fund->flag) @endif

{{ $fund->city }}, {{ $fund->country }}

{{ $fund->stage }} {{ $fund->sector }} {{ $fund->country }} Growth trend: {{ $fund->growth_trend }}

{{-- 📝 EDITOR STORY --}}
Editor’s Take

{{ $fund->description }}


{{-- 🔥 AI DEEP INSIGHT --}} @if ($fund->ai_insight)
AI's Take

{{ $fund->ai_insight }}

@endif {{-- đź§  AI SUMMARY --}} @if ($fund->ai_summary)
AI Quick Insight on this news

{!! $fund->ai_summary !!}

@endif
🔥 Key Takeaways
    @foreach (explode('-', $fund->ai_takeaways) as $item) @if (trim($item))
  • {{ trim($item) }}
  • @endif @endforeach
🎯 AI Confidence
{{--
{{ $fund->ai_confidence }}
--}}
{{ $fund->ai_confidence }}

@include('admin.partials.analytics')
@if ($related->count())

🔥 Related Startups

@foreach ($related as $item)
{{ $item->startup_name }}
{{ $item->sector }}

đź’° ${{ number_format($item->funding_amount) }}

{{ \Illuminate\Support\Str::limit($item->description, 90) }} • {{ $item->city }} {{ $item->country }} View Details →
@endforeach
@endif
Other Sectors
@foreach ($otherSectors as $item)
{{ $item->startup_name }}
{{ $item->sector }} • {{ $item->country }}

đź’° ${{ number_format($item->funding_amount) }}

{{ \Illuminate\Support\Str::limit($item->description, 90) }}

View Details →
@endforeach


@foreach ($fund->founders as $founder)
{{ $founder->name }}
{{ $founder->role }}
@if ($founder->status) 🟢Active @else 🔴Inactive @endif
@if ($founder->linkedin) @endif
@endforeach

@if ($fund->news->isNotEmpty())
{{ $fund->startup_name }} in the Spotlight
@endif @foreach ($fund->news as $news)
{{ $news->title }}
{{ $news->source ?? 'Unknown Source' }} • {{ \Carbon\Carbon::parse($news->published_date)->format('M d, Y') }}
@endforeach


@endsection