jessedev / signature-pad
Signature Pad for FilamentPHP
Requires
- php: ^8.4|^8.5
- filament/forms: ^4.0|^5.0
- illuminate/contracts: ^12.0|^13.0
- spatie/laravel-package-tools: ^1.15.0
Requires (Dev)
- filament/filament: ^4.0|^5.0
- larastan/larastan: ^3.0
- laravel/pint: ^1.0
- nunomaduro/collision: ^8.0
- orchestra/testbench: ^10.0|^11.0
- pestphp/pest: ^3.0|^4.0
- pestphp/pest-plugin-arch: ^3.0|^4.0
- pestphp/pest-plugin-laravel: ^3.0|^4.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^2.0
- phpstan/phpstan-phpunit: ^2.0
- roave/security-advisories: dev-latest
- spatie/laravel-ray: ^1.26
README
A Signature pad field for FilamentPHP based on szimek/signature_pad, originally derived from savannabits/filament-signature-pad.
Requirements: PHP 8.4 or 8.5, Laravel 12 or 13, Filament 4 or 5.
For Filament 3.x, use SignaturePad v2.x. For Filament 2.x, use v1.x.
Installation
You can install the package via composer:
composer require jessedev/signature-pad
Next, publish Filament's assets to ensure the plugin's assets are published to the public directory.
php artisan filament:assets
You may also publish the package's translations using:
php artisan vendor:publish --tag="signature-pad-translations"
You can publish the config file with:
php artisan vendor:publish --tag="signature-pad-config"
Usage
Use it in your Filament Forms as follows:
use Jessedev\SignaturePad\Forms\Components\Fields\SignaturePad; SignaturePad::make('my_signature'), // Other methods SignaturePad::make('signature') ->backgroundColor('white') // Set the background color in case you want to download to jpeg ->penColor('blue') // Set the pen color ->strokeMinDistance(2.0) // set the minimum stroke distance (the default works fine) ->strokeMaxWidth(2.5) // set the max width of the pen stroke ->strokeMinWidth(1.0) // set the minimum width of the pen stroke ->strokeDotSize(2.0) // set the stroke dot size. ->hideDownloadButtons() // In case you don't want to show the download buttons on the pad, you can hide them by setting this option.
That's it! Enjoy composing beautiful signatures.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.