the_mechanic/app/Controllers/Home.php
2024-09-25 09:12:05 +05:30

12 lines
161 B
PHP
Executable File

<?php
namespace App\Controllers;
class Home extends BaseController
{
public function index(): string
{
return view('welcome_message');
}
}