Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Napp/nova-vat-field

EU VAT field for Laravel Nova
https://github.com/Napp/nova-vat-field

laravel nova vat vat-validation

Last synced: about 2 months ago
JSON representation

EU VAT field for Laravel Nova

Awesome Lists containing this project

README

        

# EU VAT Field for Laravel Nova

This introduces a EU VAT validation field for Laravel Nova.

The field will validate on client side and server side.

### Install

You need to run the following command:
`composer require napp/nova-vat-validation`

### Add the field to your Resource file:

```php
VatValidation::make('vat')
->rules('required', 'string', 'vat')
->hideFromIndex(),
```