芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/pennysave/application/app/Models/Gateway.php
'boolean', 'code' => 'string', 'extra' => 'object', 'input_form'=> 'object', 'supported_currencies'=>'object' ]; public function currencies() { return $this->hasMany(GatewayCurrency::class, 'method_code', 'code'); } public function form() { return $this->belongsTo(Form::class); } public function singleCurrency() { return $this->hasOne(GatewayCurrency::class, 'method_code', 'code')->orderBy('id','desc'); } public function scopeCrypto() { return $this->crypto == 1 ? 'crypto' : 'fiat'; } public function scopeAutomatic() { return $this->where('code', '<', 1000); } public function scopeManual() { return $this->where('code', '>=', 1000); } }