A Laravel Nova field with Signature Pad
appstract/nova-signature-field is a Laravel package for a laravel nova field with signature pad.
It currently has 7 GitHub stars and 6.371 downloads on Packagist (latest version 1.1.0).
Install it with composer require appstract/nova-signature-field.
Discover more Laravel packages by appstract
or browse all Laravel packages to compare alternatives.
Last updated
Add a Signature Pad field to Nova.
You can install the package via composer:
composer require appstract/nova-signature-field
Just add the field to your resource.
use Appstract\NovaSignatureField\Signature;
public function fields(Request $request)
{
return [
Signature::make('Drawing')
];
}
It is also possible to pass some options to field:
// Edit in a modal, so the SignaturePad is bigger
Signature::make('Drawing')->editInModal()
// Full width image on detail, without label
Signature::make('Drawing')->fullWidthOnDetail()
Contributions are welcome, thanks to y'all :)
Appstract is a small team from The Netherlands. We create (open source) tools for Web Developers and write about related subjects on Medium. You can follow us on Twitter, buy us a beer or support us on Patreon.
The MIT License (MIT). Please see License File for more information.