invoiceninja/app/models/Payment.php
2013-11-26 14:45:07 +02:00

11 lines
No EOL
144 B
PHP
Executable file

<?php
class Payment extends Eloquent
{
protected $softDelete = true;
public function invoice()
{
return $this->belongsTo('Invoice');
}
}