@extends('dashboard.dashboard_layouts.dashboard_master') @section('admin_dashboard_title') Poll analytic @endsection @section('admin_dashboard_css') @endsection @section('admin_dashboard_content')

Question: {{ucwords($PollingQuestion->question)}}

@if(count($value_array) > 0)
@endif

Count wise stats

@if(count($value_array) > 0)
@if($PollingQuestion->input == "ranking") @foreach($name_of_responce_values as $key => $response)

{{ (isset($top_rating_array[$response])) ? $top_rating_array[$response] : 0 }}

@endforeach @else @foreach($name_of_responce_values as $key => $response)

{{$value_array[$key]}}

@endforeach @endif
@else
No Poll Question Submited!
@endif

Percentage wise stats

@if(count($value_array) > 0)
@else
No Poll Question Submited!
@endif
@endsection @section('admin_dashboard_script') @endsection