Skip to content

Instantly share code, notes, and snippets.

@Luizgpp
Last active May 23, 2019 23:18
Show Gist options
  • Save Luizgpp/d734ee6e2cbd1e51565c8e3ede4d0440 to your computer and use it in GitHub Desktop.
Save Luizgpp/d734ee6e2cbd1e51565c8e3ede4d0440 to your computer and use it in GitHub Desktop.
<?php
class Colaborador extends Model
{
protected $table = "colaboradores";
public function user()
{
return $this->belongsTo(User::class);
}
public function cargo()
{
return $this->belongsTo(Cargo::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment