@extends('layout.front') @section('css_page_level') @endsection @section('page-content')

@lang('messages.nei_vote')

@foreach ($votes as $vote)

{{$vote->title}}

@foreach ($vote->options as $voteoptions) @if (empty($VotesListCount[$voteoptions->id])) 0票(0%) @else {{$VotesListCount[$voteoptions->id]}}票({{number_format($VotesListCount[$voteoptions->id]/$VoteListCount,2)*100}}%) @endif {{$voteoptions->name}}
@endforeach
@endforeach

留言板

@foreach ($VoteComments as $comment)

發表時間: {{$comment->created_at}}
發表人: {{$comment->name}}

{{$comment->content}}
@endforeach
@endsection