aibnuhibban / jurnal-laravel
There is no license information available for the latest version (dev-main) of this package.
Laravel package for Jurnal by Mekari Integration
dev-main
2024-12-19 04:29 UTC
Requires
- guzzlehttp/guzzle: ^7.8
- illuminate/database: ^11.26
- illuminate/support: ^11.26
- nesbot/carbon: ^3.4
- vlucas/phpdotenv: ^5.6.1
Requires (Dev)
- phpunit/phpunit: 11.5
This package is auto-updated.
Last update: 2025-03-17 04:14:40 UTC
README
Jurnal Laravel is a Laravel package designed for seamless integration with the Jurnal.id API. It provides secure and modular access to Jurnal.id's API, enabling easy management of data such as Sales Returns and Account-related features like Vendor Credit Memo Refunds.
Features
- Retrieve Sales Return data by ID or transaction number.
- Manage Vendor Credit Memo Refunds.
- Secure authentication using API Key.
- ...
Installation
Install the package via Composer:
composer require vendor/jurnal-laravel
Publish the configuration file:
php artisan vendor:publish --tag=config --provider="JurnalLaravel\Providers\JurnalServiceProvider"
Then, set up the API Key and Base URL in your .env file:
JURNAL_API_KEY=your_api_key
JURNAL_BASE_URL=https://api.jurnal.id
Usage
Retrieve Sales Return
`use Aibnuhibban\JurnalLaravel\Facades\Jurnal;
try {
$salesReturn = Jurnal::getSalesReturn('10013'); // ID or transaction number
print_r($salesReturn);
} catch (\JurnalLaravel\Exceptions\JurnalException $e) {
Log::error($e->getMessage());
}`
Retrieve Vendor Credit Memo Refund
`try {
$vendorCreditMemoRefund = Jurnal::getVendorCreditMemoRefund(619); // Vendor credit memo refund ID
print_r($vendorCreditMemoRefund);
} catch (\JurnalLaravel\Exceptions\JurnalException $e) {
Log::error($e->getMessage());
}`