@php $questions = DB::table('questions')->where('quiz_id', $id)->orderBy('sort')->get(); @endphp
@foreach ($questions as $key => $question)
{!! $question->title !!}
@endforeach