Skip to content

Instantly share code, notes, and snippets.

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