Changed order of speedtests table

This commit is contained in:
Henry Whitaker
2020-04-13 08:15:52 +01:00
parent 1c72221df9
commit 1a9774f60c
5 changed files with 13 additions and 139474 deletions

View File

@@ -14,7 +14,8 @@ class SpeedtestController extends Controller
{
public function index()
{
$data = Speedtest::paginate();
$data = Speedtest::orderBy('id', 'desc')
->paginate();
return response()->json([
'method' => 'index of speedtests',