hbliang / laravel-auth-log
Laravel Auth Log
Installs: 9 678
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.0
- illuminate/auth: ^6.0|^7.0|^8.0
- illuminate/bus: ^6.0|^7.0|^8.0
- illuminate/console: ^6.0|^7.0|^8.0
- illuminate/contracts: ^6.0|^7.0|^8.0
- illuminate/database: ^6.0|^7.0|^8.0
- illuminate/http: ^6.0|^7.0|^8.0
- illuminate/notifications: ^6.0|^7.0|^8.0
- illuminate/support: ^6.0|^7.0|^8.0
Requires (Dev)
- orchestra/testbench: ^4.0|^5.0|^6.0
- phpunit/phpunit: ^8.0 || ^9.0
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;