14 lines
222 B
PHP
Executable file
14 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');
|
|
}
|
|
}
|