You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
373 B
PHP
23 lines
373 B
PHP
<?php
|
|
|
|
namespace Pablo\Ae3auth\app\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PasswordHistory extends Model
|
|
{
|
|
/**
|
|
* @var string[]
|
|
*/
|
|
protected $fillable = [
|
|
'user_id',
|
|
'password',
|
|
'last_used_at'
|
|
];
|
|
|
|
public function setTable($table)
|
|
{
|
|
return config('ae3auth-config.password_history_table');
|
|
}
|
|
}
|