@extends('layouts.master') @section('css') @endsection @section('content')

Polls ({{ $polls->total() }})

@if (count($polls) > 0) @php $i = $polls->perPage() * ($polls->currentPage() - 1) + 1; @endphp @foreach ($polls as $poll) @endforeach @else @endif
Sr. No Question Start At Expire At Status Is Declare ? Action
{{ $i++ }} {{ $poll->question ? Str::limit($poll->question, 50, '...') : '' }} {{ $poll->start_date && $poll->start_time ? date('d-m-Y H:i', strtotime($poll->start_date . ' ' . $poll->start_time)) : '' }} {{ $poll->expire_date && $poll->expire_time ? date('d-m-Y H:i', strtotime($poll->expire_date . ' ' . $poll->expire_time)) : '' }} Options ({{ $poll->pollOptions->count() }})
No Data Found
{{ $polls->appends(Request::all())->links() }}
@endsection @section('js') @endsection