PHPackages                             rocheleedenis/laravel-notazz - 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. rocheleedenis/laravel-notazz

ActiveLibrary[API Development](/categories/api)

rocheleedenis/laravel-notazz
============================

Pacote Laravel para integração com Notazz

v1.0(5y ago)1132MITPHPPHP &gt;=7.2

Since Feb 1Pushed 5y ago1 watchersCompare

[ Source](https://github.com/rocheleedenis/laravel-notazz)[ Packagist](https://packagist.org/packages/rocheleedenis/laravel-notazz)[ RSS](/packages/rocheleedenis-laravel-notazz/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (3)Versions (4)Used By (0)

[![Packagist](https://camo.githubusercontent.com/34ba560679b1cd559cdf57f7455cfc3202fda8b3a2d785fe0b8f63fb37c6207d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f726f6368656c656564656e69732f6c61726176656c2d6e6f74617a7a2e7376673f7374796c653d666c61742d737175617265)](https://github.com/rocheleedenis/laravel-boleto)[![Packagist](https://camo.githubusercontent.com/69d7429cf3e019adde3cb6e0646c22fe280dcf9cf7ebb874daca0511cf48c536/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f726f6368656c656564656e69732f6c61726176656c2d6e6f74617a7a2e7376673f7374796c653d666c61742d737175617265)](https://github.com/rocheleedenis/laravel-notazz)[![Packagist](https://camo.githubusercontent.com/d2b65abd405e75166b347f358361b9d929a137441c71b9e63e5e46b72cc7678b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f726f6368656c656564656e69732f6c61726176656c2d6e6f74617a7a2e7376673f7374796c653d666c61742d737175617265)](https://github.com/rocheleedenis/laravel-notazz)[![GitHub forks](https://camo.githubusercontent.com/111e9170b5598f306837e029d758ce54aeef49e589ce7a70029ff79d61f31ad8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f726f6368656c656564656e69732f6c61726176656c2d6e6f74617a7a2e7376673f7374796c653d736f6369616c266c6162656c3d466f726b)](https://github.com/rocheleedenis/laravel-notazz)

Laravel Notazz
==============

[](#laravel-notazz)

Pacote para facilitar integração com o sistema de emissão de notas fiscais Notazz.

Instalação
----------

[](#instalação)

### Requerimentos

[](#requerimentos)

- [Php 7.2](http://php.net/releases/7_0_0.php)
- [Laravel 5.8](https://laravel.com/docs/5.8)

Instalação via linha de comando:

`$ composer require rocheleedenis/laravel-notazz`

Modo de usar
------------

[](#modo-de-usar)

Por enquanto só é possível gerar NF-e (Nota Fiscal de Produto). Exemplo de como criar uma com os campos obrigatórios:

```
$notaFiscal = app(NotaFiscalBuilder::class);
$notaFiscal
    ->nfe()
    ->apiKey('b5b8f576a8075442d75be165b0447ace')
    ->destination()
        ->name('Beatriz Isabelly Mendes')
        ->taxid('01708781390')
        ->taxtype('F')
        ->street('Rua João Soares Lima')
        ->number('S/N')
        ->district('Centro')
        ->city('Águas Belas')
        ->uf('CE')
        ->zipcode('63887-973')
        ->email('beatriz.isabelly@gmail.com')
        ->phone('(88) 2592-2647')
    ->document()
        ->basevalue(70.30)
        ->description('Venda')
    ->products()
        ->add()
            ->cod(123)
            ->name('Escova de dente Cepacol')
            ->qtd(2)
            ->unitaryValue(15.20)
        ->save()
        ->add()
            ->cod(124)
            ->name('Pano de prato para cozinha')
            ->qtd(1)
            ->unitaryValue(55.10)
        ->save();
```

Os métodos usados após usar os métodos principais `document()`, `destination()` e `products()` levam exatamente o mesmo nome das propriedades descritas na documentação oficial do Notazz, mas removendo o prefixo da entidade a quem pertece. Qualquer propriedade que não esteja presente no exemplo está disponível seguindo essa lógica.

### Testes

[](#testes)

Por definição o retorno das funções que fazem chamada na API do Notazz retornam sempre mensagens de **sucesso**, personalizada de acordo com o método chamado, se o ambiente não for 'production'.

### Métodos disponíveis

[](#métodos-disponíveis)

Após instanciar a classe Notazz será possível chamar os seguintes métodos:

```
$notaFiscal = new \RocheleEdenis\LaravelNotazz\Builders\NotaFiscalBuilder;

// Retorna a soma do valor dos itens da nota fiscal
$notaFiscal->sumItemsValue();

// Retorna o array com a nota ja montada
$notaFiscal->toArray()
```

Após instanciar a classe Notazz será possível chamar os seguintes métodos:

```
$notazz = new \RocheleEdenis\LaravelNotazz;

// Envia a requisição para o Notazz para registrar a nova nota
$notaFiscal = new NotaFiscalBuilder;
...
$notazz->register($notaFiscal);
```

**Importante!**Como já tivemos muitos problemas com envio de informações para o Notazz com tipos diferentes de dados, todas as propriedades serão convertidas para `string` antes do envio, não importa o tipo de dados recebido ao montar a nota!

Documentação Oficial
--------------------

[](#documentação-oficial)

Esta é uma API não oficial. Foi criada com base na [documentação](https://app.notazz.com/docs/api) disponibilizada pelo Notazz.

Créditos
--------

[](#créditos)

Este projeto foi baseado no [SDK PHP Notazz](https://github.com/leoqbc/sdk-php-notazz).

Suporte
-------

[](#suporte)

Para reportar qualquer bug ou deixar sugestões, por favor, abra uma nova issue no github.

Licença
-------

[](#licença)

Distribuido sobre a licença MIT. Copie, cole, modifique, melhore e compartilhe!

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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.

###  Release Activity

Cadence

Every ~41 days

Total

2

Last Release

1938d ago

Major Versions

v0.1 → v1.02021-03-15

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/32614816?v=4)[Rochele Edenís](/maintainers/rocheleedenis)[@rocheleedenis](https://github.com/rocheleedenis)

---

Top Contributors

[![rocheleedenis](https://avatars.githubusercontent.com/u/32614816?v=4)](https://github.com/rocheleedenis "rocheleedenis (14 commits)")

---

Tags

rocheleedenislaravel-notazz

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/rocheleedenis-laravel-notazz/health.svg)

```
[![Health](https://phpackages.com/badges/rocheleedenis-laravel-notazz/health.svg)](https://phpackages.com/packages/rocheleedenis-laravel-notazz)
```

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.6M3.1k](/packages/craftcms-cms)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M46](/packages/tencentcloud-tencentcloud-sdk-php)[spatie/laravel-export

Create a static site bundle from a Laravel app

674146.0k6](/packages/spatie-laravel-export)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5022.0k](/packages/simplestats-io-laravel-client)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[jasara/php-amzn-selling-partner-api

A fluent interface for Amazon's Selling Partner API in PHP

1348.7k1](/packages/jasara-php-amzn-selling-partner-api)

PHPackages © 2026

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