chore: sync repository snapshot
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
use App\Http\Controllers\SpbuController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/spbu', [SpbuController::class, 'index']);
|
||||
Route::post('/spbu', [SpbuController::class, 'store']);
|
||||
Route::put('/spbu/{spbu}', [SpbuController::class, 'update']);
|
||||
Route::delete('/spbu/{spbu}', [SpbuController::class, 'destroy']);
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Inspiring;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
||||
Artisan::command('inspire', function () {
|
||||
$this->comment(Inspiring::quote());
|
||||
})->purpose('Display an inspiring quote');
|
||||
@@ -0,0 +1,15 @@
|
||||
<?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');
|
||||
Reference in New Issue
Block a user