Files
safekat/ci4/app/Controllers/Informes/Informe.php

22 lines
249 B
PHP
Executable File

<?php
namespace App\Controllers\Informes;
use App\Controllers\BaseController;
class Informe extends BaseController
{
function __construct()
{
}
public function index()
{
echo 'Informe';
}
}