mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
15 lines
222 B
PHP
15 lines
222 B
PHP
<?php
|
|
|
|
class InvoiceItem extends EntityModel
|
|
{
|
|
public function invoice()
|
|
{
|
|
return $this->belongsTo('Invoice');
|
|
}
|
|
|
|
public function product()
|
|
{
|
|
return $this->belongsTo('Product');
|
|
}
|
|
}
|