A simple Laravel 5 client for the ERPNext system.
composer require hammock/laravel-erpnext-api-client
Add the service provider in app/config/app.php
'provider' => [
...
Hammock\LaravelERPNext\ERPNextServiceProvider::class,
...
];
Add the alias in app/config/app.php
'aliases' => [
...
'ERPNext' => Hammock\LaravelERPNext\Facades\ERPNext::class,
...
];
php artisan vendor:publish --provider="Hammock\LaravelERPNext\ERPNextServiceProvider"
The MIT License (MIT). Please see License File for more information.