mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 08:51:11 -05:00
first commit
This commit is contained in:
11
routes/web.php
Normal file
11
routes/web.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/', function () {
|
||||
return view('welcome');
|
||||
|
||||
use App\Livewire\Counter;
|
||||
|
||||
Route::get('/counter', Counter::class);
|
||||
});
|
||||
Reference in New Issue
Block a user