<?php namespace AppModels; use IlluminateDatabaseEloquentModel; class NotificationModel extends Model { protected $table = 'notifications'; protected $fillable = ['user', 'notification']; }