escuelademusica / nova-charcounted-fields
Text and textarea fields with a character counter.
Installs: 14 705
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Vue
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2024-10-24 15:47:10 UTC
README
Text and textarea fields with a character counter for Laravel Nova.
Background
This package is fork from the source elevate-digital/nova-charcounted-fields
which was deleted from Github. We will try to maintain the compatibility with future releases of Laravel Nova.
Installation
You can require this package using composer:
composer require escuelademusica/nova-charcounted-fields
Usage
You can add the field with a resolver as follows:
use EscuelaDeMusica\CharcountedFields\TextCounted;
use EscuelaDeMusica\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.