laravel-basic-auth maintained by vdhoangson
Description
The Laravel Basic Auth.
Author
Last update
2025/06/04 04:58
(dev-main)
License
Downloads
34
Tags
Laravel Basic Auth
Installation
You can install this package by composer:
composer require vdhoangson/laravel-basic-auth
Implementation
Use this in routes/web.php
Route::middleware(['basic-auth'])->group(function () {
//All the routes are placed in here
Route::get('/home', 'DashboardController@dashboard');
});
OR
Route::get('/home', 'DashboardController@dashboard')->middleware('basic-auth');
Configures
BASIC_AUTH_USERNAME=
BASIC_AUTH_PASSWORD=
BASIC_AUTH_REALM=