This commit is contained in:
2021-03-03 12:56:14 +01:00
parent fff330705a
commit 8363126dad
7 changed files with 12 additions and 18 deletions
+4 -1
View File
@@ -1,6 +1,9 @@
<?php
use Backend\Models\GameJam;
require "../bootstrap.php";
$gameJam = GameJam::Create([
$gameJam = GameJam::firstOrCreate([
'name' => "First game jam ever!", 'startTime' => "2021-03-03T12:40", 'endTime' => "2021-04-03T12:40", 'description' => "Det her et en beskrivelse"
]);