承接 veiliglanceren/maakeenfactuur-laravel 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

veiliglanceren/maakeenfactuur-laravel

最新稳定版本:1.2.0

Composer 安装命令:

composer require veiliglanceren/maakeenfactuur-laravel

包简介

Laravel package for easily connecting with MaakEenFactuur.nl

README 文档

README

Maak Een Factuur Laravel API

📜 Overview
This Laravel package is a PHP library that provides simplified interfaces for managing customers and invoices via our API. It includes two primary facades: Customer and Invoice, which are backed by powerful service classes handling all interactions with the API.

Features

  • Customer management: Retrieve, create, and manage customer information.
  • Invoice processing: Create, update, and fetch invoices.
  • Exception handling: Error management to handle API responses.

Veilig Lanceren

This package is maintained by VeiligLanceren.nl, your partner in website development and everything else to power up your online company. More information available on our website.

Installation

To use the Laravel package of MaakEenFactuur.nl in your project, require it via Composer in your terminal:

composer require veiliglanceren/maakeenfactuur-laravel

Configuration

The API key is handled by the ApiService of the package. Set up your API key to authenticate requests.

By default this will be loaded from the config file config/maakeenfactuur.php which can be exported by running:

php artisan vendor:publish --tag="maakeenfactuur-config"

This will add the default .env variable MAAKEENFACTUUR_API_KEY which can be set:

MAAKEENFACTUUR_API_KEY="YOUR_API_KEY"

Usage

Managing Customers

use VeiligLanceren\MaakEenFactuur\Facades\Customer;

// Fetch all customers
$customers = Customer::all();

// Create a new customer
$newCustomer = Customer::create(['name' => 'John Doe', 'email' => 'john@example.com']);

// Find a specific customer
$customer = Customer::find(1);

Handling Invoices

use VeiligLanceren\MaakEenFactuur\Facades\Invoice;

// Create an invoice
$newInvoice = Invoice::create(['customer_id' => 1, 'amount' => 100.00]);

// Update an existing invoice
$updatedInvoice = Invoice::update(1, ['amount' => 150.00]);

// Fetch all invoices
$invoices = Invoice::all();

// Find a specific invoice
$invoice = Invoice::find(1);

Handling API Errors

Both Customer and Invoice services throw an ApiErrorException if an API request fails, allowing you to handle errors gracefully in your application.

try {
    $invoice = Invoice::find(1);
} catch (VeiligLanceren\MaakEenFactuur\Exception\ApiErrorException $e) {
    // TODO: Handle error
    echo 'Error: ' . $e->getMessage();
}

Contributing

Contributions are welcome! Please feel free to submit a pull request or create an issue if you have any suggestions or find any bugs.

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

This README is structured to provide a comprehensive introduction and guide on how to use the library, complete with installation instructions, usage examples, and basic error handling. Adjust the details according to your actual project structure and requirements.

统计信息

  • 总下载量: 34
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-02-11