We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
String and Array helpers are removed from laravel 6.0 Core Framework
https://laravel.com/docs/6.0/upgrade#helpers
So if You need to still use the helper install the package
composer require laravel/helpers
Or you can use by Laravel facade
use Illuminate\Support\Str; $slug = Str::slug('Laravel 5 Framework', '-');
The text was updated successfully, but these errors were encountered:
Nice catch. Here's the fix :p
Sorry, something went wrong.
Thx! @Manoz good job!
2f56856
Merge pull request #16 from Manoz/fix/15-laravel-6-support
320e018
[Fix #15] Fix str_slug for Laravel 6 support
No branches or pull requests
String and Array helpers are removed from laravel 6.0 Core Framework
https://laravel.com/docs/6.0/upgrade#helpers
So if You need to still use the helper install the package
composer require laravel/helpers
Or you can use by Laravel facade
The text was updated successfully, but these errors were encountered: