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