PHP code example of bildvitta / sp-produto
1. Go to this page and download the library: Download bildvitta/sp-produto library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bildvitta / sp-produto example snippets
use BildVitta\Hub\Entities\HubCompany;
return [
'table_prefix' => env('MS_SP_PRODUTO_TABLE_PREFIX', 'produto_'),
'model_company' => env('MS_SP_PRODUTO_COMPANY', HubCompany::class),
'db' => [
'host' => env('PRODUTO_DB_HOST'),
'port' => env('PRODUTO_DB_PORT'),
'database' => env('PRODUTO_DB_DATABASE'),
'username' => env('PRODUTO_DB_USERNAME'),
'password' => env('PRODUTO_DB_PASSWORD'),
],
'rabbitmq' => [
'host' => env('RABBITMQ_HOST'),
'port' => env('RABBITMQ_PORT'),
'user' => env('RABBITMQ_USER'),
'password' => env('RABBITMQ_PASSWORD'),
'virtualhost' => env('RABBITMQ_VIRTUALHOST', '/'),
'exchange' => [
'real_estate_developments' => env('RABBITMQ_EXCHANGE_REAL_ESTATE_DEVELOPMENTS', 'real_estate_developments'),
],
'queue' => [
'real_estate_developments' => env('RABBITMQ_QUEUE_REAL_ESTATE_DEVELOPMENTS'),
]
],
'sync_relations' => [
'buying_options',
'parameters', // need buying_options
'insurances',
'accessories',
'mirrors', // need parameters
'blueprints', // need typologies, accessories
'characteristics',
'proposal_models',
'stages',
'typologies', // need proposal_models
'units', // need typologies, blueprints, mirrors
'documents',
'media',
'properties',
],
];
bash
php artisan sp-produto:config
bash
php artisan sp-produto:install
bash
php artisan dataimport:produto_real_estate_developments
bash
php artisan db:seed --class=SpProdutoSeeder
bash
php artisan rabbitmqworker:real_estate_developments