File: /var/www/html/fieldsblaze-heroku/app/Models/OrderItems.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class OrderItems extends Model
{
public $timestamps = false;
protected $table = 'tbl_order_item';
protected $fillable = [
'OrderItemId', 'OrderId', 'Name', 'ListPrice', 'ApplyPromo', 'IsDeleted', 'PriceBookEntry', 'Product', 'ProductFamily', 'Quantity', 'TotalPrice', 'UnitPrice', 'LastModifiedById', 'LastModifiedDate', 'LastReferencedDate', 'LastViewedDate', 'CrmId', 'CreatedById', 'ModifiedDate', 'CreatedDate'
];
}