Configuracion para acceso a bbdd remota

This commit is contained in:
imnavajas
2025-03-13 15:30:12 +01:00
parent 36c5728b30
commit 02596457d8
4 changed files with 92 additions and 22 deletions

View File

@ -0,0 +1,16 @@
<?php
namespace App\Models\Presupuestos;
class ImportadorModel extends \App\Models\BaseModel
{
protected $table = 'pedido_libro';
protected $primaryKey = 'id';
//protected $allowedFields = ['ticket_number', 'order_id', 'created_at', 'updated_at', 'deleted_at', 'check_in'];
// Define the alternative connection group
protected $DBGroup = 'olderp';
}