osb/app/Models/InvoiceItemTax.php
2018-05-20 22:53:14 +10:00

15 lines
238 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class InvoiceItemTax extends Model
{
protected $table = 'ab_invoice_item_tax';
public function invoice_item()
{
return $this->belongsTo(InvoiceItem::class);
}
}