芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/app/Models/FeesLimit.php
belongsTo(Currency::class, 'currency_id'); } public function transaction_type() { return $this->belongsTo(TransactionType::class, 'transaction_type_id'); } public function payment_method() { return $this->belongsTo(PaymentMethod::class, 'payment_method_id'); } public function scopeTransactionType($query, $value) { return $query->where('transaction_type_id', $value); } public function scopeHasTransaction($query) { return $query->where('has_transaction', "Yes"); } }