Skip to content

Instantly share code, notes, and snippets.

@Luizgpp
Created May 23, 2019 23:17
Show Gist options
  • Save Luizgpp/95359a939dd518662a6358926f23c75d to your computer and use it in GitHub Desktop.
Save Luizgpp/95359a939dd518662a6358926f23c75d to your computer and use it in GitHub Desktop.
<?php
class User extends Authenticatable
{
use Notifiable;
public function colaborador()
{
return $this->hasOne(Colaborador::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment