laravel load relationship eager belongsTo code example
Example: eager loading in hasmany belongsto relationship
class Post extends Model
{
//in case of belongs to relationship we need to specify foreign key
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}