Skip to content

Instantly share code, notes, and snippets.

@nkenna
Created August 28, 2017 11:09
Show Gist options
  • Save nkenna/9287033c22364407c9450b07b4e72945 to your computer and use it in GitHub Desktop.
Save nkenna/9287033c22364407c9450b07b4e72945 to your computer and use it in GitHub Desktop.
fillables in Worker model
<?php
namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
class Worker extends Authenticatable
{
protected $fillable = [
'phone', 'email', 'password', 'firstname',
'middlename', 'lastname', 'dod', 'address',
'activated', 'completejobs', 'rating', 'numofrating', 'resident', 'residentlga',
'lastlocation', 'skill1', 'skill2', 'ref','image'
];
protected $hidden = [
'password', 'remember_token',
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment