����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.117.180.237 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/./cbt.gltechlimited.com/vendor/bavix/laravel-wallet/src/Models/ |
Upload File : |
<?php namespace Bavix\Wallet\Models; use function array_merge; use function config; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\MorphTo; /** * Class Transfer. * * @property string $status * @property int $discount * @property int $deposit_id * @property int $withdraw_id * @property string $from_type * @property int $from_id * @property string $to_type * @property int $to_id * @property string $uuid * @property int $fee * @property Transaction $deposit * @property Transaction $withdraw */ class Transfer extends Model { public const STATUS_EXCHANGE = 'exchange'; public const STATUS_TRANSFER = 'transfer'; public const STATUS_PAID = 'paid'; public const STATUS_REFUND = 'refund'; public const STATUS_GIFT = 'gift'; /** * @var array */ protected $fillable = [ 'status', 'discount', 'deposit_id', 'withdraw_id', 'from_type', 'from_id', 'to_type', 'to_id', 'uuid', 'fee', ]; /** * @var array */ protected $casts = [ 'deposit_id' => 'int', 'withdraw_id' => 'int', ]; /** * {@inheritdoc} */ public function getCasts(): array { return array_merge( parent::getCasts(), config('wallet.transfer.casts', []) ); } /** * @return string */ public function getTable(): string { if (! $this->table) { $this->table = config('wallet.transfer.table', 'transfers'); } return parent::getTable(); } /** * @return MorphTo */ public function from(): MorphTo { return $this->morphTo(); } /** * @return MorphTo */ public function to(): MorphTo { return $this->morphTo(); } /** * @return BelongsTo */ public function deposit(): BelongsTo { return $this->belongsTo(Transaction::class, 'deposit_id'); } /** * @return BelongsTo */ public function withdraw(): BelongsTo { return $this->belongsTo(Transaction::class, 'withdraw_id'); } }