<?php namespace App; use Illuminate\Database\Eloquent\Model; class Documents extends Model { protected $table = "documents"; protected $fillable = ['companyId','name','categoryId','image','original_file_name']; }