DEV Community

Thai Nguyen Hung
Thai Nguyen Hung

Posted on

8 2

Laravel Check If Relationship has Loaded or Not

One of the nice things of Larave is eager loading. Now, sometimes if you need to check whether the model has loaded the eager loading or not, then you need to check with relationLoaded().

Here is my original code.

$users = App\User::with('profile')->first();

Now, I want to check whether $user load the relationship profile or not.

$users = App\User::with('profile')->first();

if ($users->relationLoaded('posts')) {
    // yes, it has been loaded
    // now, place your logic here
}

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay