How to Run Specific Seeder in Laravel 8

Websolutionstuff | Jan-19-2022 | Categories : Laravel

In this example, we will learn how to run a specific seeder in laravel 8. If you want to run only one seeder in laravel then you can run a specific seeder, here I will show you how to run a specific seeder in laravel 8 or how to run a seeder in laravel.

Using db:seed Artisan command you can seed your database but --class option to specify a specific seeder class to run seeder individually:

 

Run Specific Seeder In Laravel

I have added some steps below to run a specific seeder in laravel 8:

php artisan db:seed --class=AdminSeeder

 

Now, you will find the seeder file in this file location database/seeders/AdminSeeder.php.

<?php

namespace Database\Seeders;

use Illuminate\Database\Seeder;
use App\Models\Admin;


class AdminSeeder extends Seeder

{
/**
* Run the database seeds.
*
* @return void
*/

public function run()
{

Admin::create([

"name" => "websolutionstuff",
"email" => "[email protected]",
"password" => bcrypt("123456789")

]);

}

}

 

Using the below command you can run all seeder in laravel.

php artisan db:seed

 

Using the below command you can run migrate with seeder in laravel.

php artisan migrate:fresh --seed

 

Using the below command you can run force seeder for production in laravel.

php artisan db:seed --force

//To run spicific seeder

php artisan db:seed --class=AdminSeeder --force

 


You might also like :

Recommended Post
Featured Post
Image Upload in Summernote Editor Using Laravel
Image Upload in Summernote Edi...

In this post we will see how to upload image in summernote editor. there are many editor available in laravel...

Read More

Jul-09-2021

Laravel whereMonth and whereYear Example
Laravel whereMonth and whereYe...

In this article, we will show you laravel whereMonth and whereYear examples. whereMonth and whereYear are...

Read More

Jan-25-2021

Google Recaptcha Example In Laravel
Google Recaptcha Example In La...

 In this tutorial I will teach you about Google Recaptcha, Google Recaptcha is used for advanced risk analysis...

Read More

Jun-10-2020

Laravel 8 Google Bar Chart Example
Laravel 8 Google Bar Chart Exa...

Today, we will see laravel 8 google bar chart example, Google charts is use to visualize data on you...

Read More

Jul-23-2021