@extends('survey::layouts.master') {{-- inject --}} @inject('helper', 'Modules\Survey\Http\Helpers\ViewHelper') {{-- Style --}} @push('links') @endpush {{-- content --}} @section('content')

{{$survey->title}}

{{csrf_field()}}
@foreach ($survey->questions()->orderBy('sort')->get() as $question) @endforeach
{{$question->pivot->sort}} {{$question->title}}@if(!empty($question->pivot->required))(必填)@endif
{!! $helper->renderQuestion($question->id, $question->pivot->required) !!}
@endsection {{-- Script --}} @push('scripts') @endpush