mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 06:11:09 -05:00
12 lines
177 B
PHP
12 lines
177 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/', function () {
|
|
return view('welcome');
|
|
|
|
use App\Livewire\Counter;
|
|
|
|
Route::get('/counter', Counter::class);
|
|
});
|