勤怠管理システムをLaravel×Reactで開発中です。
まだ、Laravelの勉強を始めたばかりで、至らない点多々あるかと思いますが、ご教授お願いしたいです。
ログイン機能の実装中、ルーティングがうまくいっているかphp artisan route:listを試したところ、以下のエラーが出ました。
Illuminate\Contracts\Container\BindingResolutionException Target class [App\Http\Controllers\App\Http\Controllers\AttendanceController] does not exist. at vendor/laravel/framework/src/Illuminate/Container/Container.php:875 871▕ 872▕ try { 873▕ $reflector = new ReflectionClass($concrete); 874▕ } catch (ReflectionException $e) { ➜ 875▕ throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e); 876▕ } 877▕ 878▕ // If the type is not instantiable, the developer is attempting to resolve 879▕ // an abstract type such as an Interface or Abstract Class and there is 1 [internal]:0 Illuminate\Foundation\Console\RouteListCommand::Illuminate\Foundation\Console\{closure}(Object(Illuminate\Routing\Route)) +13 vendor frames 15 [internal]:0 Illuminate\Foundation\Console\RouteListCommand::Illuminate\Foundation\Console\{closure}(Object(Illumi
コードを載せると見にくくなってしまうので、githubのURLを記載いたします。
お手数おかけしますが、よろしくお願いいたします。
https://github.com/miyama12style/attendance_management.git
自分で試したことは、
RouteServiceProvider.phpやweb.php , api.php , AttendanceController.phpでスペルミスやパスが間違っていないかを確認しました。
また、エラー文を検索にかけて、改善策を参考にコードの修正をしてみたのですがエラーは改善されませんでした。
バージョンはlaravel8です。
みなさんお忙しい中恐縮ですが、ご回答お待ちしております。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。