GithubHelp home page GithubHelp logo

Comments (4)

johnboc avatar johnboc commented on May 15, 2024 1

Brilliant - that did the trick. Many thanks indeed.

Regards

from eloquentfilter.

Tucker-Eric avatar Tucker-Eric commented on May 15, 2024

Looking at it briefly it looks like it's the way the relation is defined. Does it work when you update the PurchasedContent#contentFeature relation to:

public function contentFeature()
{
    return $this->belongsTo('App\RepoModels\ContentFeature', 'sac_repo_db.content_features');
}

from eloquentfilter.

johnboc avatar johnboc commented on May 15, 2024

Thanks for the quick reply. The following change:

public function contentFeature()
{
	return $this->belongsTo('App\RepoModels\ContentFeature', 'purchased_contents.content_feature_id', 'sac_repo_db.content_features.id');
}

creates this query which is closer but still missing where exists (select * from **sac_repo_db**.content_features ...

select purchased_contents.id, purchased_contents.title, purchased_contents.description, sac_repo_db.content_features.content_type 
  from purchased_contents 
  inner join sac_repo_db.content_features 
  on purchased_contents.content_feature_id = sac_repo_db.content_features.id 
  where exists (select * from content_features where purchased_contents.content_feature_id = sac_repo_db.content_features.id and content_type_id in (6))

from eloquentfilter.

Tucker-Eric avatar Tucker-Eric commented on May 15, 2024

Ahhh, what happens when you remove that definition we just did in PurchasedContent and in your ContentFeature model, add a $table property:

protected $table = 'sac_repo_db.content_features';

If that doesn't initially work, try it without the $connection property.

from eloquentfilter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.