Implemented setup wizard server check functionality

This commit is contained in:
Peter Papp
2021-07-24 11:33:58 +02:00
parent 7576904587
commit cb496281b7
19 changed files with 566 additions and 29 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace Domain\SetupWizard\Controllers;
use App\Http\Controllers\Controller;
use Illuminate\Http\Response;
class PingAPIController extends Controller
{
public function __invoke(): Response
{
return response('pong');
}
}