Skip to content

Napp/nova-vat-field

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
Aug 24, 2018
Aug 24, 2018
Aug 24, 2018
Aug 24, 2018
Aug 24, 2018
Aug 24, 2018
Aug 24, 2018
Aug 24, 2018
Aug 24, 2018
Aug 24, 2018

Repository files navigation

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(),