### Install Filament QrCode Field Package (Bash) Source: https://github.com/jeffersongoncalves/filament-qrcode-field/blob/2.x/README.md Installs the Filament QrCode Field package using Composer. This is the primary method to add the package to your Laravel project. ```bash composer require jeffersongoncalves/filament-qrcode-field ``` -------------------------------- ### Run Development Commands (Bash) Source: https://github.com/jeffersongoncalves/filament-qrcode-field/blob/2.x/README.md Provides commands for running code analysis and formatting. `composer analyse` checks for static analysis issues, and `composer format` applies code style formatting. ```bash # Run static analysis composer analyse # Format code composer format ``` -------------------------------- ### Use QrCodeInput Component in Filament Form (PHP) Source: https://github.com/jeffersongoncalves/filament-qrcode-field/blob/2.x/README.md Demonstrates how to integrate the QrCodeInput component into your Filament forms. It shows the basic usage with `QrCodeInput::make('qrcode')->required()`. ```php use JeffersonGoncalves\Filament\QrCodeField\Forms\Components\QrCodeInput; // In your form definition QrCodeInput::make('qrcode') ->required(), ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.