LaravelPackages.net
Acme Inc.
Toggle sidebar
nembie/nova-iban-field

A Laravel Nova field.

77
1
1.0.0
About nembie/nova-iban-field

nembie/nova-iban-field is a Laravel package for a laravel nova field.. It currently has 1 GitHub stars and 77 downloads on Packagist (latest version 1.0.0). Install it with composer require nembie/nova-iban-field. Discover more Laravel packages by nembie or browse all Laravel packages to compare alternatives.

Last updated

🏦 IBAN Field for Laravel Nova

A simple field for Laravel Nova that validates IBANs.

Released under the MIT license. PRs welcome! Packagist Version

Test case

⚙️ Installation

composer require nembie/nova-iban-field

🛠️ Usage

use Nembie\NovaIbanField\NovaIbanField;

...

public function fields(Request $request)
{
    return [
    
        NovaIbanField::make(__('Custom IBAN Label'), 'iban_column')->showDetails()
          
    ];
}

🧰 Methods

  • showDetails() - shows the information given by IBAN on the resource detail page
  • hideActionsOnIndex() - hide the actions on the index (copy and show/hide)
  • alwaysHideOnIndex() - "crypt" the IBAN in the index page

🌍 Supported countries

Full list of supported countries

🔺 Laravel Nova 4 Support

Read this comment.

🗒️ Note

  • This field only checks the formatting of the string, there is no check that the iban is actually valid and working.
  • German translation was done via google translate, it's probably wrong.

Star History Chart