hbliang/laravel-auth-log
最新稳定版本:v0.2.3
Composer 安装命令:
composer require hbliang/laravel-auth-log
包简介
Laravel Auth Log
README 文档
README
Installation
composer require hbliang/laravel-auth-log
Configuration
php artisan vendor:publish --provider="Hbliang\AuthLog\AuthLogServiceProvider"
Migrate
php artisan migrate
Implement the Authlogable interface and add HasAuthLog trait to your authlogable model.
use Hbliang\AuthLog\Contracts\Authlogable; use Illuminate\Foundation\Auth\User as Authenticatable; use Hbliang\AuthLog\Traits\HasAuthLog; class User extends Authenticatable implements Authlogable { use HasAuthLog; }
Usage
User::find(1)->authlogs;
统计信息
- 总下载量: 15.19k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-10-21