Got stuck in a issue with laravel 5.2.
Following is the error during eloquent create operation(post call),
Mass Assignment Exception in Model.php 453: column
Try this. Put the below code in your model,
public function __construct() { $this->setFillable(); } public function setFillable() { $fields = \Schema::getColumnListing('table_name_here'); $this->fillable[] = $fields; }
This makes each and every column is fillable from that table.