本番環境では問題なく動いてるのに開発環境ではエラーになる…
ログ見たらstr_random使ってるとこでundefined functionで落ちてた。
Call to undefined function App\\Http\\Controllers\\~str_random() at~
str_random、Str::randomがundefinedになる原因
単純にヘルパーを読んでないだけなので、以下のコマンド実行で解決する。
composer require laravel/helpers
そもそも、composer.jsonがちゃんとバージョン管理されていないのがおかしい説…。