git init
This commit is contained in:
13
routes/web.php
Normal file
13
routes/web.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
use App\Http\Controllers\PerceptronController;
|
||||
use Illuminate\Support\Facades\Broadcast;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::inertia('/', 'Home')->name('home');
|
||||
|
||||
Route::inertia('/test', 'Test')->name('test');
|
||||
|
||||
Route::resource('perceptron', PerceptronController::class)->only(['index']);
|
||||
|
||||
Broadcast::routes();
|
||||
Reference in New Issue
Block a user