Skip to content

Latest commit

 

History

History
executable file
·
19 lines (12 loc) · 396 Bytes

README.md

File metadata and controls

executable file
·
19 lines (12 loc) · 396 Bytes

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:

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