Skip to content

Instantly share code, notes, and snippets.

@shengslogar
Last active February 26, 2019 03:12
Show Gist options
  • Save shengslogar/d0696ade82bde7d530fb24fdf3dc3e8e to your computer and use it in GitHub Desktop.
Save shengslogar/d0696ade82bde7d530fb24fdf3dc3e8e to your computer and use it in GitHub Desktop.
Specify a Default Laravel Relationship
/**
* Get the author of the post.
* @see https://laravel.com/docs/5.7/eloquent-relationships#updating-belongs-to-relationships
*/
public function user()
{
return $this->belongsTo('App\User')->withDefault([
'name' => 'Guest Author',
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment