Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117753233
WalletSetting.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
640 B
Referenced Files
None
Subscribers
None
WalletSetting.php
View Options
<?php
namespace
App
;
use
Illuminate\Database\Eloquent\Model
;
/**
* A collection of settings for a Wallet.
*
* @property int $id
* @property string $wallet_id
* @property string $key
* @property string $value
*/
class
WalletSetting
extends
Model
{
/** @var array<int, string> The attributes that are mass assignable */
protected
$fillable
=
[
'wallet_id'
,
'key'
,
'value'
];
/**
* The wallet to which this setting belongs.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public
function
wallet
()
{
return
$this
->
belongsTo
(
Wallet
::
class
,
'wallet_id'
,
'id'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Apr 4, 5:16 AM (4 d, 7 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
0b/06/455b89fd7aa15c15fa16bf452619
Default Alt Text
WalletSetting.php (640 B)
Attached To
Mode
rK kolab
Attached
Detach File
Event Timeline