mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 22:54:25 +01:00
15 lines
244 B
PHP
15 lines
244 B
PHP
<?php namespace App\Models;
|
|
|
|
class InvoiceItem extends EntityModel
|
|
{
|
|
public function invoice()
|
|
{
|
|
return $this->belongsTo('Invoice');
|
|
}
|
|
|
|
public function product()
|
|
{
|
|
return $this->belongsTo('Product');
|
|
}
|
|
}
|