<?php namespace App; use Illuminate\Database\Eloquent\Model; class Notifications extends Model { protected $table = "notifications"; protected $fillable = ['created_by','send_to','comment']; }