16 lines
299 B
PHP
16 lines
299 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/', function () {
|
|
return view('home');
|
|
})->name('home');
|
|
|
|
Route::get('/input', function () {
|
|
return view('spbu.input');
|
|
})->name('spbu.input');
|
|
|
|
Route::get('/data', function () {
|
|
return view('spbu.index');
|
|
})->name('spbu.data');
|