<?php namespace App; use Illuminate\Database\Eloquent\Model; class ActionableDocuments extends Model { protected $table = "actionable_documents"; protected $fillable = ['actionableId','file','original_file_name','createdby']; }