Cashier-stripe: [Request] Vendor VAT ID on Invoice

Created on 3 Dec 2016  路  3Comments  路  Source: laravel/cashier-stripe

There is no way of entering or displaying vendor's VAT ID on the invoices.

A customer cannot use an invoice without a vendor's VAT ID for their accounting. The vendor is also issuing invalid invoices that are not in accordance with the tax rules.

Could an option to specify 'vendorVat' => '12345678' in the $data be added when calling Cashier\Invoice->download() and displayed in receipt.blade.php under the $location:

@if (isset($vendorVat))
    {{ $vendorVat }}<br>
@endif

Most helpful comment

This is pretty important for EU based companies that are registered for VAT, I would be happy to make a PR for this if needed.

All 3 comments

This is pretty important for EU based companies that are registered for VAT, I would be happy to make a PR for this if needed.

You can easily add this to your own receipt view. See https://laracasts.com/discuss/channels/laravel/customizing-cashier-invoices for publishing the receipt pdf.

Heya. Actually, I just saw this change was added on 7.0 so you're in luck :)

Was this page helpful?
0 / 5 - 0 ratings