LaravelPackages.net
Acme Inc.
Toggle sidebar
murdercode/seo-title

A Laravel Nova field.

4.218
2
v0.0.3
About murdercode/seo-title

murdercode/seo-title is a Laravel package for a laravel nova field.. It currently has 2 GitHub stars and 4.218 downloads on Packagist (latest version v0.0.3). Install it with composer require murdercode/seo-title. Discover more Laravel packages by murdercode or browse all Laravel packages to compare alternatives.

Last updated

Laravel Nova 4 SeoTitle

This is a text field (formerly called SeoTitle) which calculates a min/max length of your text and helps you to make it better for SEO.

Alt Text

Setup

First install with:

$ composer require murdercode/seo-title

then add it in your Nova class:

<?php

use Murdercode\SeoTitle\SeoTitle;

public function fields(NovaRequest $request)
{
  SeoTitle::make(__('Title'), 'title')
        ->rangeLength(30, 60)
        ->hideIcon() // For hide the SEO icon
        ->rules('required', 'max:255', 'min:3');
}

Enjoy! 🙃

Comments