<?php namespace App; use Illuminate\Database\Eloquent\Model; class Actionsorting extends Model { protected $fillable = [ 'converter_id', 'column', 'direction', 'execute_before', ]; protected $table = 'actions_sorting'; }