Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.14 KB

File metadata and controls

33 lines (22 loc) · 1.14 KB
description
limitOnIndex

Limit On Index

ArgumentTypeRequiredDefault
limitinttrue85

By utilizing the limitOnIndex method, you can define a maximum character limit that will be enforced when displaying the CKEditor field in the index view of your Laravel Nova resource. This is useful for providing a concise preview or summary of the content without overwhelming the view with excessive text.

use Mostafaznv\NovaCkEditor\CkEditor;

class Article extends Resource
{
    public function fields(Request $request): array
    {
        return [
            CkEditor::make(trans('Content'), 'content')
                ->limitOnIndex(150)
        ];
    }
}

{% hint style="info" %} In this example, the limitOnIndex method is used to restrict the displayed text to a maximum of 150 characters in the index view. Any content exceeding this limit will be truncated, providing a concise preview of the CKEditor field's content. {% endhint %}