26 lines
543 B
PHP
26 lines
543 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class WalletTransaction extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return ['amount' => 'decimal:2', 'fee' => 'decimal:2', 'metadata' => 'array', 'completed_at' => 'datetime'];
|
|
}
|
|
|
|
public function entries()
|
|
{
|
|
return $this->hasMany(WalletLedgerEntry::class);
|
|
}
|
|
|
|
public function payment()
|
|
{
|
|
return $this->belongsTo(PaymentTransaction::class, 'payment_transaction_id');
|
|
}
|
|
}
|