File: /var/www/html/fieldsblaze-heroku/app/Models/Performance.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Performance extends Model
{
public $timestamps = false;
protected $table = "tbl_performance";
protected $fillable = [
'id', 'TargetId', 'StartDate', 'EndDate', 'UserId', 'Zone', 'Region', 'TargetType', 'Area', 'Status', 'SalesOrder', 'TargetQuantity', 'AchievedQuantity', 'TargetAmount', 'Unit', 'AchievedAmount', 'Target', 'CrmId', 'CreatedById', 'CreatedDate', 'ModifiedDate'
];
}