@if (Auth::guard('user')->check())

E-Invoice Beta Phase

Hey there!

Thanks for joining us on our pilot program for e-invoicing for self hosted users. Our aim is to allow you to send your einvoices through the PEPPOL network via Invoice Ninja.

Our hosted servers will proxy your einvoices into the PEPPOL network for you, and also route einvoices back to you via Webhooks.

Configuration:

To start sending einvoices via the PEPPOL network, you are required to create a Legal Entity ID, this will be your network address in the PEPPOL network. The tabled data below is what will be used to register your legal entity, please confirm the details are correct prior to registering.

If you are in a region which requires routing directly to the government, such as Spain, Italy or Romania, you are required to have already registered with your government for the sending of einvoices.

In your .env file, add the variable LICENSE_KEY= with your self hosted white label license key - this is used for authentication with our servers, and to register the sending entity. You will also want to contact us to ensure we have configured your license for this beta test!

For discussion, help and troubleshooting, please use the slack channel #einvoicing.

Welcome, {{ Auth::guard('user')->user()->first_name }}!

@if (session()->has('error'))
{{ session('error') }}
@endif
Name
Legal Entity Id
Register
@foreach($companies as $company)
{{ ctrans('texts.name') }}: {{ $company['party_name'] }}
{{ ctrans('texts.address1') }}: {{ $company['line1'] }}
{{ ctrans('texts.address2') }}: {{ $company['line2'] }}
{{ ctrans('texts.city') }}: {{ $company['city'] }}
{{ ctrans('texts.state') }}: {{ $company['county'] }}
{{ ctrans('texts.postal_code') }}: {{ $company['zip'] }}
{{ ctrans('texts.country') }}: {{ $company['country'] }}
{{ ctrans('texts.vat_number') }} {{ $company['vat_number'] }}
{{ $company['legal_entity_id'] }}
@if($company['legal_entity_id'])

Registered

@else @endif
@endforeach
@else

Login to Your Account

@if (session()->has('error'))
{{ session('error') }}
@endif
@endif