invoiceninja/app/models/InvoiceItem.php
2015-01-11 14:30:08 +02:00

15 lines
222 B
PHP
Executable File

<?php
class InvoiceItem extends EntityModel
{
public function invoice()
{
return $this->belongsTo('Invoice');
}
public function product()
{
return $this->belongsTo('Product');
}
}