Support the ongoing development of Laravel.io →
Database Eloquent
Last updated 2 years ago.
0

Yes, you are using your arguments incorrectly. :)

It should be like this:

$processos_cli = Processo::with(['cliente' => function ($query) use ($search) {
    $query->where('nomefantasia', 'like', "%$search%");
}])
->get();

Closures may also inherit variables from the parent scope. Any such variables must be passed to the use language construct.

http://php.net/manual/en/functions.anonymous.php

0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.