<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Formulario1 extends Model { protected $table='formulario1'; protected $primaryKey='id'; public $timestamps=true; protected $fillable =[ 'cuestionante', 'tipo', 'estado' ]; protected $guarded =[ ]; }