ItSolutionStuff.com

How to Run Specific Seeder in Laravel?

By Hardik Savani β€’ April 16, 2024
Laravel

Hi,

In this tute, we will discuss how to run specific seeder in laravel. Here you will learn laravel run specific seeder. This article goes in detailed on laravel call specific seeder. let’s discuss about laravel run one seed. Alright, let’s dive into the steps.

Here, i will give you simple example of how to run specific seeder file in laravel. you can easily use this example with laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 version.

let's see simple example:

Run Specific Seeder

you can use following command to run specific seeder in laravel application:

php artisan db:seed --class=AdminSeeder

Your seeder code as like here:

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" => "Hardik Savani",

"email" => "admin@gmail.com",

"password" => bcrypt("123456")

]);

}

}

Run All Seeder

you can use following command to run all seeder in laravel application:

php artisan db:seed

Run Migration with Seeder

you can use following command to run migrate with seeder in laravel application:

php artisan migrate:fresh --seed

Run Force Seeder

you can use following command to run force seeder for production in laravel application:

php artisan db:seed --force

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

I hope it can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

πŸ“Ί Subscribe on YouTube

We Are Recommending You

β˜…

How to Run Migration and Seeder on Laravel Vapor?

Read Now β†’
β˜…

How to Change Column Length using Laravel Migration?

Read Now β†’
β˜…

How to Update Enum Value in Laravel Migration?

Read Now β†’
β˜…

Laravel Migration Add Enum Column Example

Read Now β†’
β˜…

How to Rollback Migration in Laravel?

Read Now β†’
β˜…

CRUD with Image Upload in Laravel 8 Example

Read Now β†’
β˜…

Laravel 8 Firebase Mobile Number (OTP) Authentication Tutorial

Read Now β†’
β˜…

Razorpay Payment Gateway Integration in Laravel 8 Tutorial

Read Now β†’
β˜…

Laravel Import Large SQL File using Seeder Example

Read Now β†’
β˜…

Laravel 8 Database Seeder Tutorial Example

Read Now β†’
β˜…

Laravel 7 Database Seeder Example

Read Now β†’