for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bavix\Wallet\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\MorphTo;
class Transfer extends Model
{
/**
* @var array
*/
protected $fillable = [
'deposit_id',
'withdraw_id',
'from_type',
'from_id',
'to_type',
'to_id',
'refund',
'uuid',
];
* @return string
public function getTable(): string
if (!$this->table) {
$this->table = \config('wallet.transfer.table');
}
return parent::getTable();
* @return MorphTo
public function from(): MorphTo
return $this->morphTo();
public function to(): MorphTo
* @return BelongsTo
public function deposit(): BelongsTo
return $this->belongsTo(Transaction::class, 'deposit_id');
public function withdraw(): BelongsTo
return $this->belongsTo(Transaction::class, 'withdraw_id');