mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
19 lines
307 B
PHP
Executable File
19 lines
307 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Controllers\Presupuestos;
|
|
use App\Controllers\BaseController;
|
|
|
|
|
|
class Wireotapablanda extends BaseController
|
|
{
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
echo 'Presupuesto >> Libros >> Wire-o tapa blanda [en desarrollo].';
|
|
}
|
|
}
|
|
|