PHPackages                             emizoripx/clientfel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. emizoripx/clientfel

ActiveLibrary[API Development](/categories/api)

emizoripx/clientfel
===================

Connection to FEL to make invoices for Bolivia

v2.18.14(4mo ago)02.0kMITPHP

Since Jan 14Pushed 1mo agoCompare

[ Source](https://github.com/emizoripx/client-fel)[ Packagist](https://packagist.org/packages/emizoripx/clientfel)[ RSS](/packages/emizoripx-clientfel/feed)WikiDiscussions master Synced 5d ago

READMEChangelogDependenciesVersions (499)Used By (0)

CLIENT FEL PACKAGE
==================

[](#client-fel-package)

Client for consuming services in FEL, for invoicing
---------------------------------------------------

[](#client-for-consuming-services-in-fel-for-invoicing)

Fresh installation
------------------

[](#fresh-installation)

#### STEP 1

[](#step-1)

- `php artisan migrate` for creating new tables of package
- `php artisan vendor:publish` and choose option `EmizorIpx\ClientFel\ClientFelServiceProvider` on the list

#### STEP 2

[](#step-2)

- go to `app/config/clientfel.php` and change value of api\_url of FEL and routes of class INVOICE , ACCOUNT and PRODUCT
- got to `routes/api.php` and insert inside group prefix `'api/v1'`

```

    use EmizorIpx\ClientFel\routes\Credentials;
    ...

    Credentials::routes();
```

- got to `app/Models/Invoices.php` and add `use InvoiceFelTrait;`
- got to `app/Repositories/BaseRepository.php`

```
