feat: wire FuelFinder to home route, replacing static homepage

This commit is contained in:
Ovidiu U
2026-04-07 14:38:03 +01:00
parent 41a2cc5f43
commit e9612666e3
3 changed files with 13 additions and 1 deletions

View File

@@ -1,9 +1,10 @@
<?php
use App\Livewire\Public\FuelFinder;
use App\Livewire\Public\StationSearch;
use Illuminate\Support\Facades\Route;
Route::view('/', 'welcome')->name('home');
Route::get('/', FuelFinder::class)->name('home');
Route::get('/stations', StationSearch::class)->name('stations.search');