Add location creation

This commit is contained in:
Dane Everitt 2016-01-16 23:10:46 -05:00
parent fb5533f107
commit 644f26fbfe
4 changed files with 98 additions and 4 deletions

View file

@ -14,4 +14,11 @@ class Location extends Model
*/
protected $table = 'locations';
/**
* Fields that are not mass assignable.
*
* @var array
*/
protected $guarded = ['id', 'created_at', 'updated_at'];
}