mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-21 21:33:08 +01:00
18 lines
338 B
PHP
18 lines
338 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Helpers\UpdateHelper;
|
|
use Illuminate\Http\Request;
|
|
|
|
class UpdateController extends Controller
|
|
{
|
|
public function checkForUpdate()
|
|
{
|
|
return response()->json([
|
|
'method' => 'check for updates',
|
|
'update' => UpdateHelper::check(),
|
|
], 200);
|
|
}
|
|
}
|