mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
35 lines
381 B
PHP
Executable File
35 lines
381 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Controllers\Produccion;
|
|
use App\Controllers\BaseController;
|
|
|
|
|
|
class Ordenmaquina extends BaseController
|
|
{
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
echo 'Orden maquina';
|
|
}
|
|
|
|
public function delete()
|
|
{
|
|
|
|
}
|
|
|
|
public function add()
|
|
{
|
|
|
|
}
|
|
|
|
public function edit()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|