Skip to content

v5.6

Compare
Choose a tag to compare
@olssonm olssonm released this 02 Jul 07:18
· 48 commits to master since this release
b38c92a

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.