feat: implement integration management with CRUD operations and routes for tenant integration

This commit is contained in:
2026-07-03 14:44:18 -03:00
parent 0d4c6a4492
commit 3887a4fcba
16 changed files with 446 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace Database\Seeders;
use App\Domains\Integration\Models\Integration;
use Illuminate\Database\Seeder;
class TelepagosIntegrationSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
Integration::updateOrCreate(
['integration_code' => 'telepagos'],
[
'name' => 'Telepagos',
'integration_data_schema' => [
'username' => 'required|string',
'password' => 'required|string',
]
]
);
}
}