mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
27 lines
359 B
PHP
Executable File
27 lines
359 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use App\Models\ActivityModel;
|
|
use App\Models\Usuarios\UserModel;
|
|
|
|
class Home extends BaseController
|
|
{
|
|
private $user_model;
|
|
|
|
function __construct()
|
|
{
|
|
$this->user_model = new UserModel();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
|
|
echo view(getenv('theme.path') . 'main/defaultlayout');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|