15 lines
363 B
PHP
15 lines
363 B
PHP
<?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');
|
|
});
|
|
|
|
require __DIR__.'/settings.php';
|