Skip to content
Advertisement

Laravel Eloquent. When using With(), how can I pass data to the Model?

My db structure is

Profile

  • ID ..

Profile_row

  • ID
  • Name: eks “First_name”
  • Content: eks “James”
  • Profile_id: 1

In my controller I do this:

JavaScript

and my Profile Model looks like this

JavaScript

And I get a nice nested list with profiles, and every profile_row where name=first_name under.

But how can I send a argument from the controller to the Model where I define what profile row ‘name’ I want to return?

Eks: Controller (This don’t work, but I hope it will show what I’m after)

JavaScript

Model:

JavaScript

Advertisement

Answer

Alter you profile_row model’s method to be whithout the name parameters:

JavaScript

When you load relationship with the with method add the constraint there.

JavaScript

From the doc https://laravel.com/docs/8.x/eloquent-relationships#constraining-eager-loads

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement