This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.
You can install the package via composer:
composer require thotam/thotam-auth
php artisan vendor:publish --provider="Thotam\ThotamAuth\ThotamAuthServiceProvider" --force
php artisan vendor:publish --provider="Laravel\Fortify\FortifyServiceProvider"
Add "phone", "active", "link_at", "link_by" to fillable of User Models
Add use SoftDeletes; use Userstamps; to User Models
add
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'link_at' => 'datetime',
];
to User Models
Add "App\Providers\FortifyServiceProvider::class" to "config\app.php"
Add 'CheckAccount' => Thotam\ThotamAuth\Http\Middleware\CheckAccount::Class To App\Http\Kernel.php in $routeMiddleware
php artisan migrate
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email thanhtamtqno1@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.