Example:
$this->textLimit('description',25);
namespace App\Http\Node;
use Trafik8787\LaraCrud\Contracts\NodeInterface;
use Trafik8787\LaraCrud\Models\NodeModelConfiguration;
class Article extends NodeModelConfiguration implements NodeInterface {
public function showDisplay ()
{
$this->textLimit('description', 25);
....
}