Files
fuel-price/routes/web.php
Ovidiu U 4e9b809a10
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
feat: add user geolocation marker and auto-zoom to map based on search radius
2026-04-07 20:21:31 +01:00

20 lines
522 B
PHP

<?php
use App\Livewire\Public\FuelFinder;
use App\Livewire\Public\StationSearch;
use Illuminate\Support\Facades\Route;
//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');
Route::middleware(['auth', 'verified'])->group(function () {
Route::view('dashboard', 'dashboard')->name('dashboard');
});
require __DIR__.'/settings.php';