wiebenieuwenhuis/filament-char-counter

There is no license information available for the latest version (1.1.5) of this package.

Count the amount of characters in a field

Installs: 6 536

Dependents: 1

Suggesters: 0

Security: 0

Stars: 27

Watchers: 3

Forks: 2

Open Issues: 6

Language:Blade

1.1.5 2023-06-07 11:39 UTC

This package is auto-updated.

Last update: 2024-05-07 13:38:49 UTC


README

Installation

composer require wiebenieuwenhuis/filament-char-counter

Usage

Show a character counter in a text input or textarea.

TextInput with a 55 max counter, you can exceed the 55 character limit, the counter will turn red.

TextInput::make('title')->characterLimit(55),

Textarea with a max length of 55 characters. You can't exceed the 55 character limit.

Textarea::make('content')->maxLength(55),

screenshot