marsoltys/uservel

此包已被废弃,不再维护。作者建议使用 soltmar/uservel 包代替。

用户管理

1.0.5 2020-08-17 10:56 UTC

This package is auto-updated.

Last update: 2021-12-05 18:01:36 UTC


README

安装

使用 Composer

comopser install soltmar/uservel

在 uservel.php 配置文件中定义 User 模型类

将 auth.php 配置中的用户提供者类更改为

'providers' => [
           'users' => [
               'driver' => 'eloquent',
               'model' => \User::class,
           ],
           ...
]