| Install | |
|---|---|
composer require bytenet/laravel-admin-base |
|
| Latest Version: | v0.2.0 |
| PHP: | >5.5.0 |
Laravel Admin's base package, which offers admin authentication and a blank admin panel
Laravel AdminBase central package, which includes:
$ composer require bytenet/laravel-admin-base
ByteNet\LaravelAdminBase\BaseServiceProvider::class,
$ rm -rf app/Http/Controllers/Auth
$ php artisan vendor:publish --provider="ByteNet\LaravelAdminBase\BaseServiceProvider"
$ php artisan migrate
User model:use ByteNet\LaravelAdminBase\app\Notifications\ResetPasswordNotification as ResetPasswordNotification; /**
* Send the password reset notification.
*
* @param string $token
* @return void
*/
public function sendPasswordResetNotification($token)
{
$this->notify(new ResetPasswordNotification($token));
}
Please see CHANGELOG for more information what has changed recently.
// TODO
// TODO
$ composer test
Please see CONTRIBUTING and CONDUCT for details.
If you discover any security related issues, please email zexbre1@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.