initial round of changes from Claude
This commit is contained in:
@@ -1,8 +1,6 @@
|
||||
<?php
|
||||
|
||||
use App\Http\Controllers\WeatherController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Inertia\Inertia;
|
||||
|
||||
Route::get('/', function () {
|
||||
return Inertia::render('Weather');
|
||||
})->name('home');
|
||||
Route::get('/', [WeatherController::class, 'index'])->name('home');
|
||||
|
||||
Reference in New Issue
Block a user