PHP code example of rafaellaurindo / laravel-brasilapi

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

    

rafaellaurindo / laravel-brasilapi example snippets


use RafaelLaurindo\BrasilApi\BrasilApi;

class ExampleController
{
    public function searchZipCode(BrasilApi $brasilApi)
    {
        return response()->json($brasilApi->cep('01431000'));
    }
}

use BrasilApi;

BrasilApi::cep('01431000');

brasilApi()->getBank(77);

use BrasilApi;

BrasilApi::cep('01431000');

BrasilApi::getBanks();

BrasilApi::getBank(77);

BrasilApi::findCnpj('19131243000197');
bash
php artisan vendor:publish --provider="RafaelLaurindo\BrasilApi\BrasilApiServiceProvider" --tag="config"