You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

29 lines
439 B

<?php
/**
* User Model
*/
class User extends \Illuminate\Database\Eloquent\Model
{
protected $table = "users";
protected $hidden = array('password');
/*
Example of relations:
---------------------
public function questions() {
return $this->hasMany('Questions');
}
public function personal() {
return $this->hasOne('Personal');
}
public function job() {
return $this->belongsTo('Job');
}
*/
}