Error:
Trying to get property of non-object (View:
This is my app informationDB:
survey:
- id;
- template_id;
- title;
templates:
- id;
- name;
- internal_name;
SurveyModel:
public function theme(){
return $this->hasOne(Template::class, 'template_id','id');
}
View:
@foreach($surveys->reverse() as $survey)
<tr>
<td></td>
</tr>
@endforeach
via Pedro