表題の通り、 php artisan route:cache
を行うとなぜかエラーとなってしまいます。なお、エラーの箇所のファイルは編集していません。
php artisan route:cache
実行結果
Route cache cleared! LogicException Unable to prepare route [api/user] for serialization. Uses Closure. at vendor/laravel/framework/src/Illuminate/Routing/Route.php:1150 1146▕ */ 1147▕ public function prepareForSerialization() 1148▕ { 1149▕ if ($this->action['uses'] instanceof Closure) { ➜ 1150▕ throw new LogicException("Unable to prepare route [{$this->uri}] for serialization. Uses Closure."); 1151▕ } 1152▕ 1153▕ $this->compileRoute(); 1154▕ +15 vendor frames 16 artisan:37 Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) (
回答1件
あなたの回答
tips
プレビュー