Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
375 B
PHP
Raw Permalink Normal View History

2018-05-09 08:05:17 -05:00
<?php
2020-11-03 17:18:31 +01:00
namespace Database\Seeders;
2018-05-09 08:05:17 -05:00
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
2018-05-09 08:05:17 -05:00
*
* @return void
*/
2023-05-24 22:21:54 +02:00
public function run(): void
2018-05-09 08:05:17 -05:00
{
2019-01-14 07:44:23 -05:00
$this->call(DefaultAlertTemplateSeeder::class);
2021-09-27 12:17:15 -05:00
$this->call(ConfigSeeder::class);
2023-08-28 09:39:03 -05:00
$this->call(RolesSeeder::class);
2018-05-09 08:05:17 -05:00
}
}