feat: add fuelalert config and public /stations route

This commit is contained in:
Ovidiu U
2026-04-05 20:21:43 +01:00
parent a80320bc27
commit 279ed529ab
3 changed files with 9 additions and 0 deletions

View File

@@ -63,3 +63,5 @@ AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false
VITE_APP_NAME="${APP_NAME}"
FUELALERT_API_KEY=

View File

@@ -50,4 +50,8 @@ return [
'model' => env('ANTHROPIC_MODEL', 'claude-sonnet-4-6'),
],
'fuelalert' => [
'api_key' => env('FUELALERT_API_KEY'),
],
];

View File

@@ -1,9 +1,12 @@
<?php
use App\Livewire\Public\StationSearch;
use Illuminate\Support\Facades\Route;
Route::view('/', 'welcome')->name('home');
Route::get('/stations', StationSearch::class)->name('stations.search');
Route::middleware(['auth', 'verified'])->group(function () {
Route::view('dashboard', 'dashboard')->name('dashboard');
});