Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1841646
WalletSetting.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
579 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
{
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
(
'
\A
pp
\W
allet'
,
'wallet_id'
,
'id'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Aug 25, 3:33 PM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
220541
Default Alt Text
WalletSetting.php (579 B)
Attached To
Mode
R2 kolab
Attached
Detach File
Event Timeline
Log In to Comment