16 lines
No EOL
221 B
PHP
Executable file
16 lines
No EOL
221 B
PHP
Executable file
<?php
|
|
|
|
class InvoiceItem extends Eloquent
|
|
{
|
|
protected $softDelete = true;
|
|
|
|
public function invoice()
|
|
{
|
|
return $this->belongsTo('Invoice');
|
|
}
|
|
|
|
public function product()
|
|
{
|
|
return $this->belongsTo('Product');
|
|
}
|
|
} |