Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117882626
UserPassword.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
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
Mon, Apr 6, 12:38 AM (6 d, 2 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a9/ba/01abf98a2d4ce67edf0fd11357fa
Default Alt Text
UserPassword.php (803 B)
Attached To
Mode
rK kolab
Attached
Detach File
Event Timeline