Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
vendor
/
spatie
/
laravel-sluggable
/
src
/
Exceptions
:
InvalidOption.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\Sluggable\Exceptions; use Exception; class InvalidOption extends Exception { public static function missingFromField(): static { return new static('Could not determine which fields should be sluggified'); } public static function missingSlugField(): static { return new static('Could not determine in which field the slug should be saved'); } public static function invalidMaximumLength(): static { return new static('Maximum length should be greater than zero'); } }