kenken999's picture
fa
dfcff8f
raw
history blame
336 Bytes
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Hash;
class User extends Model
{
protected $fillable = ['username', 'password', 'profile', 'team_id', 'tags'];
protected $hidden = ['password'];
public function team()
{
return $this->belongsTo(Team::class);
}
}