芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/pennysave/application/app/Models/GatewayCurrency.php
'boolean']; // Relation public function method() { return $this->belongsTo(Gateway::class, 'method_code', 'code'); } public function currencyIdentifier() { return $this->name ?? $this->method->name . ' ' . $this->currency; } public function scopeBaseCurrency() { return $this->method->crypto == 1 ? 'USD' : $this->currency; } public function scopeBaseSymbol() { return $this->method->crypto == 1 ? '$' : $this->symbol; } }