Files
unity/routes/web.php
T
glovetleong 8fa80e4a1a setup
2021-06-17 09:53:04 +08:00

12 lines
228 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::get('unauthorized', ['as' => 'unauthorized', function() {
return response('Unauthorized Access', 401);
}]);
Route::get('/', function () {
return view('welcome');
});