@extends('master') @section('breadcrumb') @stop @section('content')
@if(kvfj(Auth::user()->permissions, 'polls_add')) {!! Form::open(['url' => '/poll/add']) !!}

Crear encuesta

{!! Form::text('title', null) !!}
{!! Form::select('shop_id', $shops, null, ['class' => 'form-select']) !!}
{!! Form::text('content', null) !!}
{!! Form::date('date_until', null) !!}
{!! Form::close() !!} @endif @if(kvfj(Auth::user()->permissions, 'polls_charts_view'))

Generar Reporte

{!! Form::open(['url' => '/poll/charts', 'target' => '_blank']) !!}
{!! Form::date('date_from', null, ['required']) !!}
{!! Form::date('date_end', null, ['required']) !!}
{!! Form::select('show_list', yes_no(), 1, ['class' => 'form-select']) !!}
{!! Form::close() !!}
@endif

Lista de encuestas

@foreach($polls as $poll) @endforeach
ID Restaurante Titulo Registros Acciones
{{ $poll->id }} {{ $poll->getShop->name }} {{ $poll->title }} {{ $poll->getParticipations->count() }}
Visitar encuesta @if(kvfj(Auth::user()->permissions, 'polls_edit')) Editar @endif @if(kvfj(Auth::user()->permissions, 'polls_delete')) Eliminar @endif
@endsection