Skip to content

Instantly share code, notes, and snippets.

@geggleto
Created April 22, 2015 14:39
Show Gist options
  • Select an option

  • Save geggleto/ec62170b85e1353e2e96 to your computer and use it in GitHub Desktop.

Select an option

Save geggleto/ec62170b85e1353e2e96 to your computer and use it in GitHub Desktop.
Eloquent Traits
<?php
namespace VMS\Traits;
trait UserRelationshipTrait {
/**
* @return \Illuminate\Database\Eloquent\Relations\HasOne
*/
public function users() {
return $this->hasOne("VMS\Models\User");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment