'date', 'amount' => 'decimal:2', ]; public function invoice(): BelongsTo { return $this->belongsTo(Invoice::class); } public function receivedBy(): BelongsTo { return $this->belongsTo(User::class, 'received_by'); } }