Skip to content

Instantly share code, notes, and snippets.

@dadamssg
Created November 13, 2013 16:27
Show Gist options
  • Save dadamssg/7451921 to your computer and use it in GitHub Desktop.
Save dadamssg/7451921 to your computer and use it in GitHub Desktop.
<?php
class Person extends BaseModel
{
protected $table = 'people';
protected $fillable = [
'firstName',
'lastName',
'email',
'city',
'state',
'company_id'
];
protected $guarded = ['id'];
public function company()
{
return $this->belongsTo('Company');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment