v5.6
Allows for the use of inline credentials, as such:
Route::get('/', [
'as' => 'start',
'uses' => 'StartController@index',
'middleware' => 'auth.very_basic:username,password'
]);
See #25 for discussion.
Allows for the use of inline credentials, as such:
Route::get('/', [
'as' => 'start',
'uses' => 'StartController@index',
'middleware' => 'auth.very_basic:username,password'
]);
See #25 for discussion.