Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F7057719
UserPassword.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
803 B
Referenced Files
None
Subscribers
None
UserPassword.php
View Options
<?php
namespace
App
;
use
App\Traits\BelongsToUserTrait
;
use
Illuminate\Database\Eloquent\Model
;
/**
* A password history entry of a User.
*
* @property int $id
* @property int $user_id
* @property string $password
*/
class
UserPassword
extends
Model
{
use
BelongsToUserTrait
;
/** @var bool Indicates if the model should be timestamped. */
public
$timestamps
=
false
;
/** @var array<string, string> The attributes that should be cast. */
protected
$casts
=
[
'created_at'
=>
'datetime:Y-m-d H:i:s'
,
];
/** @var array<int, string> The attributes that are mass assignable. */
protected
$fillable
=
[
'user_id'
,
'password'
];
/** @var array<int, string> The attributes that should be hidden for arrays. */
protected
$hidden
=
[
'password'
];
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jun 12, 4:05 AM (13 h, 37 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
841622
Default Alt Text
UserPassword.php (803 B)
Attached To
Mode
R2 kolab
Attached
Detach File
Event Timeline
Log In to Comment