前提・実現したいこと
シーダーとファクトリーでテストデータ用意したいです。
https://stackoverflow.com/questions/63816395/laravel-call-to-undefined-function-database-seeders-factory
こちらの記事を参考にコードを書きました。しかし、それがうまくいきません。
Laravelはバージョン8を使っています。
BlogTableSeeder.phpに原因があるのかと思うのですが、原因がわかりません。教えていただければ幸いです。
よろしくお願いいたします( ; ; )
発生している問題・エラーメッセージ
Seeding: Database\Seeders\BlogsTableSeeder BadMethodCallException Call to undefined method App\Models\Blog::factory() at vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:50 46▕ * @throws \BadMethodCallException 47▕ */ 48▕ protected static function throwBadMethodCallException($method) 49▕ { ➜ 50▕ throw new BadMethodCallException(sprintf( 51▕ 'Call to undefined method %s::%s()', static::class, $method 52▕ )); 53▕ } 54▕ } • Bad Method Call: Did you mean App\Models\Blog::toArray() ? +3 vendor frames 4 database/seeders/BlogsTableSeeder.php:17 Illuminate\Database\Eloquent\Model::__callStatic("factory", []) +7 vendor frames 12 database/seeders/DatabaseSeeder.php:17 Illuminate\Database\Seeder::call("Database\Seeders\BlogsTableSeeder")
該当のソースコード
BlogsTableSeeder.php
<?php namespace Database\Seeders; use App\Models\Blog; use Illuminate\Database\Seeder; class BlogsTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { Blog::factory()->count(15)->create(); } }
DatabaseSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { $this->call (BlogsTableSeeder::class); } }
BlogFactory.php
<?php namespace Database\Factories; use App\Models\Blog; use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Str; class BlogFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = Blog::class; /** * Define themodel's default state. * * @return array */ public function definition() { return [ 'title' => $this->faker->word, 'content' => $this->faker->realText ]; } }
補足情報(FW/ツールのバージョンなど)
Laravelのバージョンは8.14.0です。
よろしくお願いいたします( ; ; )
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/19 13:05