Skip to content

vdhoangson/laravel-basic-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Basic Auth

GitHub tag (latest by date) GitHub Packagist

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=

About

Laravel Basic Auth

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Languages