Skip to content

Instantly share code, notes, and snippets.

@amir9480
Last active May 20, 2019 17:46
Show Gist options
  • Save amir9480/d2b3719f53b0d04a9053a0e789d6e308 to your computer and use it in GitHub Desktop.
Save amir9480/d2b3719f53b0d04a9053a0e789d6e308 to your computer and use it in GitHub Desktop.
vasiatlaravel
<?php
class BlogPost extends Model
{
protected $with = [
'category'
];
/**
* Category of this post.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function category()
{
return $this->belongsTo(BlogCategory::class, 'category_id');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment