2025-03-25 15:02:34 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
use Livewire\Volt\Volt;
|
|
|
|
|
|
|
|
Route::get('/', function () {
|
|
|
|
return view('welcome');
|
|
|
|
})->name('home');
|
|
|
|
|
|
|
|
require __DIR__.'/auth.php';
|
2025-03-26 19:05:00 -04:00
|
|
|
|
|
|
|
Auth::routes();
|
|
|
|
|
|
|
|
Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home');
|