timedoor/tmd-basic-auth

Basic auth timedoor

1.1.0 2023-07-06 03:47 UTC

This package is auto-updated.

Last update: 2024-06-06 05:37:50 UTC


README

Instalation

Install Package Via Composer

composer require timedoor/tmd-basic-auth

Publish config

php artisan vendor:publish --tag=tmd-bsa

this will copy config from basic auth with file name tmd-bsa.php

Route Implementation Example

Route::get('/', function () {
    return view('welcome');
})->middleware('tmd-bsa');

You can add new provider on config file and add new param on middleware

Route::get('/', function () {
    return view('welcome');
})->middleware('tmd-bsa:admin,client');

Thank You