1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 23:22:52 +01:00
invoiceninja/app/models/InvoiceItem.php

15 lines
222 B
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
<?php
2013-12-04 17:20:14 +01:00
class InvoiceItem extends EntityModel
2013-11-26 13:45:07 +01:00
{
2015-01-11 13:30:08 +01:00
public function invoice()
{
return $this->belongsTo('Invoice');
}
2013-11-26 13:45:07 +01:00
2015-01-11 13:30:08 +01:00
public function product()
{
return $this->belongsTo('Product');
}
}