<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PerformanceLineItem extends Model
{
public $timestamps = false;
protected $table = "tbl_performance_line_item";
protected $fillable = [
'id', 'TargetLineItemId', 'TargetId', 'ProductId', 'TargetQuantity', 'AchievedQuantity', 'SalesTarget', 'ProductName', 'Target', 'CrmId', 'CreatedById', 'CreatedDate', 'ModifiedDate'
];
}