mirror of
https://github.com/kevin-DL/exercise_tracker_api.git
synced 2026-01-11 11:04:32 +00:00
19 lines
289 B
PHP
19 lines
289 B
PHP
<?php
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
use App\Exercise;
|
|
|
|
class ExerciseController extends Controller
|
|
{
|
|
/**
|
|
* Get the list of exercises
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function index() {
|
|
return response()->json(Exercise::all());
|
|
}
|
|
}
|