mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-19 20:34:01 +00:00
ad85832e75
user login UI
8 lines
165 B
PHP
8 lines
165 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('unauthorized', ['as' => 'unauthorized', function() {
|
|
return response('Unauthorized Access', 401);
|
|
}]);
|