Page MenuHomePhorge

WalletSetting.php
No OneTemporary

Authored By
Unknown
Size
650 B
Referenced Files
None
Subscribers
None

WalletSetting.php

<?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(
'\App\Wallet',
'wallet_id', /* local */
'id' /* remote */
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Apr 6, 2:38 AM (2 w, 3 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
3f/5a/6d4f699b26f63a1f652bd37cc8b2
Default Alt Text
WalletSetting.php (650 B)

Event Timeline