Merge remote-tracking branch 'origin/main' into main

This commit is contained in:
neerholt 2021-03-08 13:10:31 +01:00
commit 9ab0526608
7 changed files with 10 additions and 10 deletions

View File

@ -13,7 +13,7 @@ if(isset($_POST['login'])){
$groupName = $_POST["groupName"];
$password = $_POST["password"];
$group = Group::firstWhere('groupName', $groupName );
$group = Group::firstWhere('group_name', $groupName );
if($group){
$hashedPassword = $group->password->password;
if(password_verify($password, $hashedPassword )){

View File

@ -20,9 +20,9 @@ if(isset($_POST['reg_group'])){
$group->gameJam()->associate(GameJam::find($_POST['gameJamId']));
$group->groupName = $groupName = $_POST['groupName'];
$group->group_name = $groupName = $_POST['groupName'];
$group->groupAmount = $_POST['groupAmount'];
$group->group_amount = $_POST['groupAmount'];
if(!$group->save()){
return;

View File

@ -17,7 +17,7 @@ if (session_status() === PHP_SESSION_ACTIVE) {
$keyword = new KeyWord();
//Take the keyWord the user typed and set it equal to the keyword valuable
$keyword->keyWord = $_POST['key_word'];
$keyword->key_word = $_POST['key_word'];
//Make foreign key from the groups table to the keyWords table
$keyword->group()->associate($group);

View File

@ -5,7 +5,7 @@ use Illuminate\Database\Eloquent\Model as Eloquent;
class GameData extends Eloquent
{
protected $fillable = [
'gameLink', 'isWebBased', "img"
'game_link', 'is_web_Based', "img"
];
public function group(){

View File

@ -6,9 +6,9 @@ class GameJam extends Eloquent{
protected $fillable =[
'name',
'startTime',
'endTime',
'keyWord',
'start_time',
'end_time',
'key_word',
'description'
];

View File

@ -4,7 +4,7 @@ use Illuminate\Database\Eloquent\Model as Eloquent;
class Group extends Eloquent
{
protected $fillable = [
'groupName', 'groupAmount', 'votes'
'group_name', 'group_amount', 'votes'
];
public function gameJam(){

View File

@ -3,7 +3,7 @@ namespace Backend\Models;
use Illuminate\Database\Eloquent\Model as Eloquent;
class KeyWord extends Eloquent{
protected $fillable =[
'keyWord'
'key_word'
];