PNG IHDR x sBIT|d pHYs + tEXtSoftware www.inkscape.org< ,tEXtComment
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Bot extends Model
{
use HasFactory;
protected $fillable = [
'name',
'bot_type',
'trading_pair',
'status',
'min_amount',
'max_amount',
'duration',
'total_profit',
'total_subscribers',
'settings'
];
protected $casts = [
'settings' => 'array',
'min_amount' => 'decimal:8',
'max_amount' => 'decimal:8',
'total_profit' => 'decimal:8',
'last_trade_at' => 'datetime'
];
public function subscriptions()
{
return $this->hasMany(BotSubscription::class);
}
public function trades()
{
return $this->hasMany(BotTrade::class);
}
public function hasActiveSubscribers(): bool
{
return $this->subscriptions()->where('status', 'active')->exists();
}
public function switchPair(string $newPair)
{
$oldPair = $this->trading_pair;
$this->trading_pair = $newPair;
$this->save();
// Record the trade
$this->trades()->create([
'trading_pair' => $oldPair,
'action' => 'switch_pair',
'amount' => 0,
'price' => 0,
'metadata' => [
'old_pair' => $oldPair,
'new_pair' => $newPair
]
]);
}
}
b IDATxytVսϓ22 A@IR:hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-E