tariqul / multiauth
This is package for Multiple Auhtenication on your laravel project
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:CSS
Requires
- spatie/laravel-permission: ^2.25
- yajra/laravel-datatables: ^1.0
Requires (Dev)
- fzaninotto/faker: ^1.9@dev
- illuminate/support: ^5.8@dev
- mockery/mockery: ^1.0@dev
- orchestra/database: ^3.8@dev
- orchestra/testbench: ^3.8@dev
- phpunit/phpunit: ^7.4@dev
This package is auto-updated.
Last update: 2025-06-22 13:31:51 UTC
README
Installation
Laravel
This package can be used in Laravel 5.4 or higher. If you are using an older version of Laravel, take a look at [the v1 branch of this package].
You can install the package via composer:
composer require tariqul/multiauth
In Laravel 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php
file:
'providers' => [ // ... Tariqul\Multiauth\MultiauthServiceProvider::class, ];
You can publish [the migration] with:
php artisan vendor:publish --tag="migration"
You can publish [the migration][spaite laravel permission migration ] with:
php artisan vendor:publish --tag="migrations"
assets for multiauth
php artisan vendor:publish --tag="multiauth_assets"
make auth
php artisan make:auth
After the migration has been published you can create the admins- tables by running the migrations:
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="config"
You can seed database with:
php artisan multiauth:seed
License
The MIT License (MIT). Please see License File for more information.