Game-Jaming/Backend/Controllers/Polls/1vote.php

28 lines
381 B
PHP

<?php
use Backend\Models\Group;
use Backend\Models\Vote;
require "../../../bootstrap.php";
if(isset($_POST['1Vote'])){
require "VoteChecking.php";
$vote = new Vote();
$vote->group()->associate(Group::find($_POST['groupId']));
$vote->points += 1;
if(!empty($_POST['comment'])){
$vote->comment = $_POST['comment'];
}
$vote->save();
}