@extends('layouts.admin') @section('title', 'Détails d\'un sondage - ' . getRadioUsers()->name) @section('content')

Détails du sondage "{{ $s_title }}"

@if ($s_total < 1)
@endif @if (empty($questions))

Aucune question liée au sondage !

@else
@foreach ($questions as $question)

{{ $question[0]->q_content }}
@foreach ($question as $q)
{{ $q->p_content }} {{ number_format(($q->p_total / max(1, $q->s_total)) * 100, 2) }}%
@endforeach
@endforeach
@endif
@endsection @section('script') @endsection