I am generating from in my blade view from database with nested foreach loop @foreach ($asdSections...
@foreach ($questions as $question) <div class="form-group">...
Using $posts = Post::find($id)->comments()->get(); i can get children of single using $posts...
I am providing an example there are two tables paper and question in paper table {id, name} in quest...
public function comments() { return $this->hasMany('Comment','comment_id','id'); }
just assume I have an array where array keys are question_id and array values are question_scores ho...
othmanus said: I think you're trying to say: @foreach ($issue->levels as $level) Ya, I made a...
The Laravel portal for problem solving, knowledge sharing and community building.
The community