mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-19 12:24:01 +00:00
12 lines
228 B
PHP
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');
|
|
});
|