web/app/Http/Controllers/AnagramController.php
myrmidex 5ccd7349c5
Some checks are pending
tests / ci (push) Waiting to run
Add main controller
2026-08-22 23:50:21 +02:00

13 lines
190 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class AnagramController extends Controller
{
public function __invoke()
{
return view('index');
}
}