@extends('web.layouts.main') @section('content') @CSRF @foreach($questions as $key=>$row) {{$row->descriptions()->name}} {{$key+1}} of {{count($questions)}} @foreach($row->answers as $answer) {{$answer->descriptions()->name}} @endforeach @endforeach @push('js') @endpush @stop