PHP code example of samuelrochac / laravel-brasil-ceps
1. Go to this page and download the library: Download samuelrochac/laravel-brasil-ceps 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/ */
samuelrochac / laravel-brasil-ceps example snippets
'providers' => [
// Outros Service Providers...
Samuelrochac\LaravelBrasilCeps\CepServiceProvider::class,
],
return [
'db_prefix' => 'bzc_', // Altere conforme necessário
];
bash
php artisan vendor:publish --provider="Samuelrochac\LaravelBrasilCeps\CepServiceProvider"