You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Model::unguard();
$this->call(PostTableSeeder::class);
Model::reguard();
}
}
Now the issue is in database i can see there are many users created in database.
The text was updated successfully, but these errors were encountered:
I trying to follow the tutorial at https://laracasts.com/lessons/whats-new-in-testdummy by @JeffreyWay
When i have code as
and my DatabaseSeeder.php
Now the issue is in database i can see there are many users created in database.
The text was updated successfully, but these errors were encountered: