uawdijnntqw1x1x1
IP : 3.22.130.228
Hostname : host45.registrar-servers.com
Kernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
jackpotjunglegam
/
public_html
/
core
/
storage
/
..
/
.
/
config
/
.
/
..
/
app
/
Models
/
Gateway.php
/
/
<?php namespace App\Models; use App\Constants\Status; use App\Traits\GlobalStatus; use Illuminate\Database\Eloquent\Model; class Gateway extends Model { use GlobalStatus; protected $casts = [ 'status' => '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 == Status::ENABLE ? 'crypto' : 'fiat'; } public function scopeAutomatic() { return $this->where('code', '<', 1000); } public function scopeManual() { return $this->where('code', '>=', 1000); } }
/home/jackpotjunglegam/public_html/core/storage/.././config/./../app/Models/Gateway.php