- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
This commit is contained in:
28
database/seeds/DatabaseSeeder.php
Normal file
28
database/seeds/DatabaseSeeder.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
// Global Importer - call separately: php artisan db:seed --class=GlobalDbImportSeeder
|
||||
// $this->call(GlobalDbImportSeeder::class);
|
||||
|
||||
$this->call([
|
||||
ChecklistSeeder::class,
|
||||
RolesTableSeeder::class,
|
||||
UserSeeder::class,
|
||||
FilterSeeder::class,
|
||||
SynonymSeeder::class,
|
||||
LearningProductSeeder::class,
|
||||
MemberSeeder::class
|
||||
//BranchSeeder::class,
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user