PHP code example of aabadawy / laravel-odoo-integration

1. Go to this page and download the library: Download aabadawy/laravel-odoo-integration 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/ */

    

aabadawy / laravel-odoo-integration example snippets


return [
    'default'   => [
        'token' => env('ODOO_TOKEN'),
        'url' => env('ODOO_URL'),
        'user_id' => '1',
    ]
];
bash
php artisan vendor:publish --provider="Aabadawy\LaravelOdooIntegration\LaravelOdooIntegrationServiceProvider" --tag="config"