In Tinker, App\Models\Project::all();
returns a list of all projects. Now I would like to add additional dummy data with factory(App\Models\Project::class, 10)->create();
, but nothing is happening.
What am I doing wrong and how could I debug it?