##発生している問題・エラーメッセージ
php artisan db:seedで実行しようとしたら以下のようなエラーメッセージが出てきました。
##エラーメッセージ
ReflectionException : Class EntriesTableSeeder does not exist at /Users/name/Download/blog/vendor/laravel/framework/src/Illuminate/Container/Container.php:788 784| if ($concrete instanceof Closure) { 785| return $concrete($this, $this->getLastParameterOverride()); 786| } 787| > 788| $reflector = new ReflectionClass($concrete); 789| 790| // If the type is not instantiable, the developer is attempting to resolve 791| // an abstract type such as an Interface or Abstract Class and there is 792| // no binding registered for the abstractions so we need to bail out. Exception trace: 1 ReflectionClass::__construct("EntriesTableSeeder") /Users/name/Download/blog/vendor/laravel/framework/src/Illuminate/Container/Container.php:788 2 Illuminate\Container\Container::build("EntriesTableSeeder") /Users/name/Download/blog/vendor/laravel/framework/src/Illuminate/Container/Container.php:667 Please use the argument -v to see more details.
##該当のソースコード
DatabaseSeeder.php
<?php use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { // $this->call(UsersTableSeeder::class); $this->call(EntriesTableSeeder::class); } }
EntriesTableSeeder.php
<?php use Illuminate\Database\Seeder; class EntriesTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { // DB::table('entries')->insert([ 'title'=>'entry01', 'content'=>'hello', 'created_at'=>date('Y-m-d H:i:s'), 'updated_at'=>date('Y-m-d H:i:s') ]); } }
##試したこと
さらに、それを改善しようとしてcomposer dump-autoloadをやっても以下のようなエラーコードが出てきてしまいます。
$ php composer.phar dump-autoload Composer could not find a composer.json file in /Users/tanboharuki/Download To initialize a project, please create a composer.json file as described in the https://getcomposer.org/ "Getting Started" section
また、ls database/seeds/で調べたら、
DatabaseSeeder.php EntriesTableSeeder.php
と、ファイルがある事は確認が取れました。
初学者ですが、ご教授お願い致します。
##追記
ご指摘頂いたので、プロジェクトディレクトリのある場所で実行してみたのですが、
blog name$ php composer.phar dump-autoload
Could not open input file: composer.phar
となってしまいました。
回答1件
あなたの回答
tips
プレビュー