PHPackages                             pendonl/laravel-exact-online - 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. pendonl/laravel-exact-online

AbandonedArchivedLibrary[API Development](/categories/api)

pendonl/laravel-exact-online
============================

Laravel Facade wrapper for Exact Online PHP API

126.2k23[1 issues](https://github.com/PendoNL/laravel-exact-online/issues)PHP

Since May 22Pushed 5y ago2 watchersCompare

[ Source](https://github.com/PendoNL/laravel-exact-online)[ Packagist](https://packagist.org/packages/pendonl/laravel-exact-online)[ RSS](/packages/pendonl-laravel-exact-online/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

22/05/2020: We've archived this package as it was originally intended to be used inside a project and scratch our own itch. We haven't touched our updated it since. It's archived for the people who use(d) it. Feel free to fork and re-release this in case you want to actively develop and support this package.

Laravel Exact Online
====================

[](#laravel-exact-online)

This package is a Laravel wrapper around the Exact Online PHP API by Picqer (). It provides routes and a controller out of the box to connect your Laravel app with an Exact Online app. It also provides a Facade which is chainable to make requests to the API easily. Authorisation and refresh tokens are saved automatically.

`Note:` the tokens are saved in a json file for application wide use. Therefor this code is not suitable if your platform need access to Exact Online for a single user! This set of code may be used to communicate with a single Exact Online user's administration.

#### First draft - do not use!

[](#first-draft---do-not-use)

So far, this package is just a draft. So use at own risk. We're currently working on a project to see if it provides all functions we need. If you intend to use this package, please see below for instructions and what functions you may use.

Installation
------------

[](#installation)

First add the dev-master version of this package to your composer.json

```
"pendonl/laravel-exact-online": "dev-master"

```

Then run `composer update` and add the Service Provider to config/app.php (For L5.5 and up Auto-Discovery is enabled)

```
...
PendoNL\LaravelExactOnline\Providers\LaravelExactOnlineServiceProvider::class,
...

```

In the same file, add the Facade

```
...
'ExactOnline' => PendoNL\LaravelExactOnline\LaravelExactOnlineFacade::class,
...

```

Followed by this, publish the resources (views, config, etc.)

```
php artisan vendor:publish --provider="PendoNL\LaravelExactOnline\Providers\LaravelExactOnlineServiceProvider"

```

While developing this package, you might want to use the `--force` flag on this command to overwrite previous files.

And last but not least either edit config/laravel-exact-online to match your Exact Online app settings or add these keys to your .env:

```
EXACT_CLIENT_ID=
EXACT_CLIENT_SECRET=

```

The following keys are optional

```
EXACT_COUNTRY_CODE=
EXACT_DIVISION=

```

Multiuser support
-----------------

[](#multiuser-support)

Out of the box this plugin stores the exact keys inside a JSON file. This means every user uses the same credentials. If you would like to give your users the opportunity to make individual connections you can do so by setting the following parameter inside your .env file:

```
EXACT_MULTI_USER=true

```

Sidenote: There's no migration written for this feature yet. Feel free to do so. In the meantime you should add these changes to your user migration:

```
$table->text('exact_accessToken')->nullable();
$table->text('exact_refreshToken')->nullable();
$table->text('exact_tokenExpires')->nullable();
$table->text('exact_authorisationCode')->nullable();
```

and add these fillables to your user object:

```
protected $fillable = [
    'name', 'email', 'password', 'exact_accessToken', 'exact_refreshToken', 'exact_tokenExpires', 'exact_authorisationCode'
];
```

How to use connect Laravel &amp; Exact Online
---------------------------------------------

[](#how-to-use-connect-laravel--exact-online)

As said this package provides the route and controller to easily connect your Exact App with your Laravel project. You may overwrite the routes in you routes/web.php file, I even insist on doing so because the routes are `not protected` by default!

You may also edit the views to your liking, after publishing they can be found under `/views/vendor/laravel-exact-online/` in your resources path.

##### Step 1: connect &amp; authorise

[](#step-1-connect--authorise)

Visit , you will be presented a submit button to go to Exact Online. Once there, login and approve the app. After this you will be returned do , this route takes care of saving the needed tokens for future requests.

##### Step 2: use the Facade

[](#step-2-use-the-facade)

That's it, you're now ready to use the package.

How to use the API
------------------

[](#how-to-use-the-api)

The package by Picqer requires you to provide a valid connection parameter to each resource you are about to use. This is done by a big piece of code which requires adding tokens. In the ServiceProvider of this package we've made a singleton that does all this for you:

```
$connection = app()->make('Exact\Connection');
```

This connection then is used when requesting resources using Picqer's classes:

```
use \Picqer\Financials\Exact\Account;

// List all accounts
$account = new Account($connection);
dd($account->get());
```

Using the Facade, we tried to make things easy, for instance getting a list of accounts:

```
ExactOnline::Account()->get();
```

Or finding a specific account:

```
ExactOnline::Account()->find('account_ID');
```

All methods that change the connection are camelCased and prefixed with connection, for example if you want to change the baseUrl of the API you would call:

```
ExactOnline::connectionSetBaseUrl('http://start.exactonline.de');
```

Of course everything is chainable for readability:

```
ExactOnline::connectionSetBaseUrl('http://start.exactonline.de')
    ->Account()
    ->find('account_ID');
```

Credits
-------

[](#credits)

- [Picqer/exact-php-client](https://github.com/picqer/exact-php-client)

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

About Pendo
-----------

[](#about-pendo)

Pendo is a webdevelopment agency based in Maastricht, Netherlands. If you'd like, you can [visit our website](https://pendo.nl).

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity33

Early-stage or recently created project

 Bus Factor1

Top contributor holds 61.1% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/e88bd30f3c99bb1e2103b435c0548776677d19f23f40b8826a469a6be713a556?d=identicon)[Pendo](/maintainers/Pendo)

---

Top Contributors

[![joshuadegier](https://avatars.githubusercontent.com/u/2580917?v=4)](https://github.com/joshuadegier "joshuadegier (22 commits)")[![justijndepover](https://avatars.githubusercontent.com/u/9008623?v=4)](https://github.com/justijndepover "justijndepover (10 commits)")[![websmurf](https://avatars.githubusercontent.com/u/4027236?v=4)](https://github.com/websmurf "websmurf (4 commits)")

### Embed Badge

![Health badge](/badges/pendonl-laravel-exact-online/health.svg)

```
[![Health](https://phpackages.com/badges/pendonl-laravel-exact-online/health.svg)](https://phpackages.com/packages/pendonl-laravel-exact-online)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
