invoiceninja/app/models/InvoiceItem.php

14 lines
192 B
PHP
Executable File

<?php
class InvoiceItem extends EntityModel
{
public function invoice()
{
return $this->belongsTo('Invoice');
}
public function product()
{
return $this->belongsTo('Product');
}
}