I get the title error when I run command:
php artisan db:seed
My screenshot:
I have no idea where this problem comes from. I was sear
Try to change
factory(App\Models\Article::class, 30)->create();
to
App\Models\Article::factory()->count(30)->create();