Package Data | |
---|---|
Maintainer Username: | bytenet |
Maintainer Contact: | office@bytenet.rs (Nikola Zeravcic) |
Package Create Date: | 2017-03-30 |
Package Last Update: | 2017-03-30 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:14:57 |
Package Statistics | |
---|---|
Total Downloads: | 13 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 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.