<?php namespace App; use Illuminate\Database\Eloquent\Model; class Actionaddcolumn extends Model { protected $fillable = [ 'converter_id', 'columns_to_add', 'after_column' ]; protected $table = 'actions_add_column'; }