laravel run seed
#All of them
php artisan db:seed
#One class
php artisan db:seed --class=UserSeeder
laravel run seed
#All of them
php artisan db:seed
#One class
php artisan db:seed --class=UserSeeder
how to make db seeder in laravel
php artisan make:seeder UsersTableSeeder
laravel 8 seeding
/**
* Run the database seeders.
*
* @return void
*/
public function run()
{
$this->call([
UserSeeder::class,
PostSeeder::class,
CommentSeeder::class,
]);
}
make a seeding file in laravel
1#create a laravel seeding file
php artisan make:seeder <seeder file name>
#example
php artisan make:seeder ShopSeeder
2#after seeding file create and seed data added,run this command below to add thos data in database
php artisan db:seed --class=<seeder file name>
#example
php artisan db:seed --class=ShopSeeder
3# if want to add all seeder fill data just run
php artisan db:seed
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us