mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
35 lines
588 B
PHP
35 lines
588 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use App\Controllers\BaseController;
|
|
|
|
class Test extends BaseController
|
|
{
|
|
|
|
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
//PresupuestoService::test();
|
|
return view('themes/backend/vuexy/form/test_js/viewTest');
|
|
}
|
|
|
|
function test_js()
|
|
{
|
|
/*$this->response->setHeader('Content-Type', 'text/javascript');
|
|
return view('themes/backend/vuexy/form/test_js/test_js.js');*/
|
|
|
|
|
|
}
|
|
|
|
public function pruebaJJO()
|
|
{
|
|
//PresupuestoService::test2();
|
|
}
|
|
}
|
|
|