Posts by Walter Lucas • 1 point
3 posts
-
0
votes1
answer100
viewsA: How to use Anxious Loading nested in Laravel 5.4 correctly? My related tables return "null"
I managed to solve my problem as follows: $results = Profile::rightJoin('informations', 'informations.profile_id', '=', 'profiles.id') ->join('profile_categories',…
-
0
votes1
answer100
viewsQ: How to use Anxious Loading nested in Laravel 5.4 correctly? My related tables return "null"
I have the following search in my application: $results = Profile::with('profileCategories.categories', 'informations')->where('ativo', '=', "1")->where('nome', 'like', '%' .…
-
0
votes1
answer74
viewsA: Redirect Loop Cakephp
Are you declaring LoginRedirect twice, try to take one, I suggest the with the way 'pages' => 'login'; 'loginRedirect' => array('controller' => 'eventos', 'action' => 'index'),…