Answer the question
In order to leave comments, you need to log in
How to display data through a connection?
SQL
Damp (связь result_test)
Foreach
I try $user->result_test->estimate
but I get error Property [estimate] does not exist on this collection instance. ...
Answer the question
In order to leave comments, you need to log in
So, what is your connection? What did she return? Collection. So you are accessing a collection, not a single element
// так
$user->result_test->first()->estimate
// или так
foreach($user->result_test as $res)
$res->estimate
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question