7 lines
198 B
PHP
7 lines
198 B
PHP
<?php
|
|
require_once "../../../bootstrap.php";
|
|
use Backend\Models\GameJam;
|
|
|
|
$dbValue = GameJam::all()->toJson(JSON_PRETTY_PRINT);
|
|
header('Content-Type: application/json;charset=UTF-8');
|
|
echo $dbValue; |