Answers for "all currencies of the world seeder laravel"

PHP
1

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 DatabaseSeeders;
  
use IlluminateDatabaseSeeder;
  
class DatabaseSeeder extends Seeder
{
    /**
     * Seed the application's database.
     *
     * @return void
     */
    public function run()
    {
        $this->call([
            UserSeeder::class
            AdminSeeder::class
        ]);
    }
}
Posted by: Guest on January-03-2022
1

laravel seeder

/**
 * Run the database seeders.
 *
 * @return void
 */
public function run()
{
    $this->call([
        UserSeeder::class,
        PostSeeder::class,
        CommentSeeder::class,
    ]);
}
Posted by: Guest on December-04-2020

Code answers related to "all currencies of the world seeder laravel"

Browse Popular Code Answers by Language