reconstruction of the project
This commit is contained in:
@@ -1,15 +1,22 @@
|
||||
<?php
|
||||
|
||||
// app/Models/PasswordResetRequest.php
|
||||
namespace App\Models;
|
||||
|
||||
use App\Models\BaseModel;
|
||||
|
||||
class PasswordResetRequest extends BaseModel
|
||||
{
|
||||
protected $table = 'password_reset_requests';
|
||||
|
||||
// CI: timestamps off
|
||||
public $timestamps = false;
|
||||
|
||||
protected $fillable = [
|
||||
'ip_address',
|
||||
'requested_at',
|
||||
];
|
||||
public $timestamps = false;
|
||||
}
|
||||
|
||||
protected $casts = [
|
||||
'requested_at' => 'datetime',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user