File "InvoiceItem.php"
Full Path: /home/isoftco/public_html/hrm/app/Models/InvoiceItem.php
File size: 295 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class InvoiceItem extends Model
{
protected $table = "invoice_items";
public $timestamps = false;
public function invoice() {
return $this->belongsTo("App\\Models\\Invoice", "invoice_id", "id");
}
}