File: /var/www/html/fieldsblaze-heroku/app/Models/Visits.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Visits extends Model
{
public $timestamps = false;
protected $table = "tbl_visits";
protected $fillable = [
'id', 'VisitsId', 'AccountId', 'ActualEnd', 'ActualStart', 'CheckedIn', 'CheckedInLocation', 'CheckedInLocationLatitude', 'CheckedInLocationLongitude', 'CheckedOut', 'CompetitionProduct', 'CreatedById', 'CreatedDate', 'IsApproved', 'IsDeleted', 'LastActivityDate', 'LastModifiedById', 'LastModifiedDate', 'Name', 'OwnerId', 'PlannedEnd', 'PlannedStart', 'ReasonForCancellation', 'Status', 'CrmId', 'VisitLocation', 'ModifiedDate'
];
}