Text and textarea fields with a character counter.
datomatic/nova-charcounted-fields is a Laravel package for text and textarea fields with a character counter..
It currently has 2 GitHub stars and 2.745 downloads on Packagist (latest version v2.0.0).
Install it with composer require datomatic/nova-charcounted-fields.
Discover more Laravel packages by datomatic
or browse all Laravel packages to compare alternatives.
Last updated
Text and textarea fields with a character counter for Laravel Nova.
You can require this package using composer:
composer require datomatic/nova-charcounted-fields
You can add the field with a resolver as follows:
use Datomatic\CharcountedFields\TextCounted;
use Datomatic\CharcountedFields\TextareaCounted;
TextCounted::make('Meta title')

You can use the text and textarea fields with charactercounters on you Nova model. The max number of characters aren't enforced, but just encouraged with warning colors and the counter. (You could enforce the max number of characters with Nova's built in rules and with a maxlength extra attribute).
TextCounted::make('Meta title')
->maxChars(60)
->warningAt(50)
->withMeta(['extraAttributes' => ['maxlength' => '65']]),
TextareaCounted::make('Meta description')
->maxChars(160)
->warningAt(150)
->rows(3),
The maxChars and warningAt are both optional. The color of the counter will change when the max or warningAt limit is reached.
