@extends('layouts.app') {{-- 注入頁面顯示 --}} @inject('votes', 'App\Presenters\VotesPresenter') @section('head') @endsection @section('header')
〈返回
線上投票
@endsection @section('content') @forelse ($datas as $data)
{{ csrf_field() }}

{{ $data->title }}

{{ $data->directions }}

{{ $votes->showOptions($data->option_type, $data->option_val) }}

截止日期:{{ $data->end_date }} @if ( in_array( $data->votes_id, $voted ) ) 已投票 @else @endif

@empty
目前無任何資料
@endforelse @include('common.errors') @endsection