mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
32 lines
395 B
PHP
Executable File
32 lines
395 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Controllers\EnviosLogistica;
|
|
use App\Controllers\BaseController;
|
|
|
|
|
|
class Logistica extends BaseController
|
|
{
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
echo 'Logistica';
|
|
}
|
|
|
|
public function etiquetas()
|
|
{
|
|
echo 'Etiquetas';
|
|
}
|
|
|
|
public function tracking()
|
|
{
|
|
echo 'Traking';
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|