feat: add user geolocation marker and auto-zoom to map based on search radius
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled

This commit is contained in:
Ovidiu U
2026-04-07 20:21:31 +01:00
parent 0b26c4c257
commit 4e9b809a10
7 changed files with 883 additions and 36 deletions

View File

@@ -4,7 +4,11 @@ use App\Livewire\Public\FuelFinder;
use App\Livewire\Public\StationSearch;
use Illuminate\Support\Facades\Route;
Route::get('/', FuelFinder::class)->name('home');
//Route::get('/', FuelFinder::class)->name('home');
Route::view('/', 'homepage')->name('home');
Route::get('/fuel-finder', FuelFinder::class)->name('fuel-finder');
Route::get('/stations', StationSearch::class)->name('stations.search');