Eusonlito\LaravelMeta\Meta::title PHP Method

title() public method

public title ( string $title = null ) : string
$title string
return string
    public function title($title = null)
    {
        if ($title === null) {
            return $this->title;
        }
        return $this->title = $this->plain($title);
    }