interface SlugifyInterface
{
/**
* Return a URL safe version of a string.
*
* @param string $string
* @param string|array|null $options
*
* @return string
*
* @api
*/
public function slugify(string $string, array|string|null $options = null): string;
}
this file is vendor/cocur/slugify/src/SlugifyInterface.php:35
When i try to submit the form by select a image then giving this error
syntax error, unexpected ‘|’, expecting variable (T_VARIABLE)
in server PHP Version 7.4.33 and Project laravel framework is 8.75. Now can you guide me to fix this issue.