Implement HomeController, update home route, and enhance menu components with close functionality

This commit is contained in:
pacnpal
2025-02-25 16:49:45 -05:00
parent b4462ba89e
commit 8951e59f49
14 changed files with 511 additions and 233 deletions

View File

@@ -3,9 +3,7 @@
use Illuminate\Support\Facades\Route;
use App\Livewire\Counter;
Route::get('/', function () {
return view('welcome');
})->name('home');
Route::get('/', [App\Http\Controllers\HomeController::class, 'index'])->name('home');
Route::get('/counter', Counter::class);