@extends('admin.layout.master') @section('content')
Question

{{$poll->question}}

Time

{{$poll->time}}

Email-Id

{{$poll->created_by->email}}

Mobile No

+{{trim($poll->created_by->country_code,'+').' '.$poll->created_by->mobile_number}}

@if(!empty($poll->options))
OPTIONS
@foreach($poll->options as $k=>$option)
Option {{$k+1}}

{{$option->option}}

{{$option->selection_percentage>0?$option->selection_percentage.'%':''}}
@endforeach @endif
@endsection