invoiceninja/app/models/Payment.php

11 lines
144 B
PHP
Raw Normal View History

2013-11-26 14:45:07 +02:00
<?php
class Payment extends Eloquent
{
protected $softDelete = true;
public function invoice()
{
return $this->belongsTo('Invoice');
}
}