@extends('layouts.admin') @section('page-title','') @section('breadcrumb') @include('admin.partials.crumb',[ 'crumbs'=>[ route('admin.dashboard')=>__('default.dashboard'), route('admin.survey.index')=>__lang('surveys'), '#'=>__lang('reports') ]]) @endsection @section('content') @php foreach($survey->surveyQuestions as $question): @endphp
{!! $question->question !!}
@php foreach($question->surveyOptions as $option): @endphp @php $percent = $controller->getOptionPercent($option->id) @endphp @php endforeach; @endphp
{{ __lang('option') }} {{ __lang('percentage') }}
{{ $option->option }} {{ $percent }}%
@php endforeach; @endphp @endsection