<?php namespace App; use Illuminate\Foundation\Auth\User as Authenticatable; class PendingJob extends Authenticatable { /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'updatePriceLists' ]; protected $table = 'pending_jobs'; }