This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
- Coming soon
You can install the package via composer:
composer require bildvitta/iss-juridico
You can publish the config file with:
php artisan vendor:publish --provider="Bildvitta\IssCrm\IssJuridicoServiceProvider" --tag="iss-juridico-config"
This is the contents of the published config file:
return [
'base_uri' => env('MS_JURIDICO_BASE_URI', 'https://api-dev-juridico.nave.dev'),
'prefix' => env('MS_JURIDICO_API_PREFIX', '/api')
];
//Search contracts
$issJuridico = new Bildvitta\IssJuridico();
$contracts = collect($issJuridico->contracts()->search()->results);
//Create contract
$issJuridico = new Bildvitta\IssJuridico();
$newContract = $issJuridico->contracts()->create([
'client' => '86aecb0f-d38e-4558-a889-3d1a183a0120',
'real_estate_development' => 'ced1cde0-61dd-42f3-8d3d-c8f92580c1e0',
'sales' => 'ced1cde0-61dd-42f3-8d3d-c8f92580c1e0'
]);
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.