Files
commander_league_api/app/Http/Controllers/FormatsController.php
Kevin ANATOLE 0691e5a107 Game formats
- Created the formats tables/migrations
- Created the controller to retrieve the formats
2020-10-31 19:23:04 +00:00

20 lines
318 B
PHP

<?php
namespace App\Http\Controllers;
use App\Model\Format;
class FormatsController extends Controller
{
/**
* @return \Illuminate\Http\JsonResponse
*/
public function index()
{
$formats = Format::all();
return response()->json(['data' => $formats->toArray()], 200);
}
}