@php
// Get active polls (in production, this would be fetched from the database)
$activePolls = \App\Domain\Governance\Models\Poll::where('status', 'active')
->where('start_date', '<=', now())
->where('end_date', '>=', now())
->get();
$upcomingPolls = \App\Domain\Governance\Models\Poll::where('status', 'draft')
->orWhere('start_date', '>', now())
->orderBy('start_date')
->limit(3)
->get();
@endphp