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
laravel create seeder
CREATE SEEDER -> run php artisan command:
php artisan make:seeder UsersTableSeeder
laravel run all seeders
let's see simple example:
you can use following command to all seeders in laravel application:
***************************
php artisan db:seed
***************************
you have to register all seeder in DatabaseSeeder.php file and that will run all seeders at a time, register as like bellow:
database/seeders/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([
UserSeeder::class
AdminSeeder::class
]);
}
}
Create seeder in laravel
step-1- php artisan make:seeder yourSeedername
step-2- //add data in inside run function in your new created seeder. eg
$Records = [
['id'=>1, 'name'=>'abc','email'=>'[email protected]'],
['id'=>2, 'name'=>'xyz','email'=>'[email protected]']
];
YourModel::insert($Records);
//don't forget to use model in top of your seeder
step-3- //register seeder in run function inside Database/Seeders/DatabaseSeers.php as follows
$this->call(yourseeder::class);
step-4- //Now run following command
php artisan db:seed
seeding laravel
php artisan db:seed
laravel 8 seeding
php artisan db:seed --force
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