Page MenuHomePhorge

WalletSetting.php
No OneTemporary

Size
579 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', 'id');
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Jun 12, 4:06 AM (13 h, 52 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
900226
Default Alt Text
WalletSetting.php (579 B)

Event Timeline