Financial Modeling Prep
Provider
Economic calendar requests are made from Laravel using the backend API key. The key is never exposed in Blade or JavaScript.
Status
{{ $message ?? 'Calendar data loaded successfully.' }}
Impact Guide
Data source: Financial Modeling Prep Economic Calendar API.
| Time | Country | Currency | Event | Impact | Actual | Forecast | Previous |
|---|---|---|---|---|---|---|---|
| @if ($event['datetime']) {{ \Illuminate\Support\Carbon::parse($event['datetime'])->format('M d, H:i') }} @else - @endif | {{ $event['country'] ?: '-' }} | {{ $event['currency'] ?: '-' }} | {{ $event['event'] ?: '-' }} | @php $impactClass = match ($event['impact']) { 'High' => 'bg-red-100 text-red-700 dark:bg-red-950 dark:text-red-200', 'Medium' => 'bg-amber-100 text-amber-700 dark:bg-amber-950 dark:text-amber-200', 'Low' => 'bg-slate-100 text-slate-700 dark:bg-slate-800 dark:text-slate-200', default => 'bg-blue-100 text-blue-700 dark:bg-blue-950 dark:text-blue-200', }; @endphp {{ $event['impact'] }} | {{ filled($event['actual']) ? $event['actual'] : '-' }} | {{ filled($event['forecast']) ? $event['forecast'] : '-' }} | {{ filled($event['previous']) ? $event['previous'] : '-' }} |
|
{{ $status === 'missing_key' ? 'FMP API key is not connected yet.' : 'No economic events found for this filter.' }} Add a valid Financial Modeling Prep API key, or change your filter values and try again. |
|||||||