initial igniter support

This commit is contained in:
Yannick 2025-04-02 16:45:49 +02:00
commit 123d2f13a3
105 changed files with 8740 additions and 111 deletions

View file

@ -0,0 +1,11 @@
<?php
namespace App\Controllers;
class Home extends BaseController
{
public function index(): string
{
return view('welcome_message');
}
}