I have upgraded Laravel from 5.6 to 6.0. Previously, default helper functions were running fine on the controllers, but now it says "undefined." In my controller, I have used the following.
$filename = str_random(12);
I am getting the following error.
message: "Call to undefined function App\Http\Controllers\str_random()"
I have also used the random()
function, and it's saying the same thing.
Can somebody please guide me on what to do?.
I have run commands like:
composer dump-autoload
But I get the same error.
str_random()
was removed in 5.8, doesn't look like it's supported at all. Try this instead: laravel.com/docs/6.x/helpers#method-str-random – FreethinkerStr::random()
– Jakob