2016-05-19 15:01:28 +01:00
|
|
|
<?php
|
|
|
|
|
2020-10-17 17:15:06 +01:00
|
|
|
namespace Database\Seeders;
|
|
|
|
|
2016-05-19 15:01:28 +01:00
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
|
|
{
|
|
|
|
/**
|
2023-02-18 09:34:57 +00:00
|
|
|
* Seed the application's database.
|
2016-05-19 15:01:28 +01:00
|
|
|
*/
|
2023-02-18 09:34:57 +00:00
|
|
|
public function run(): void
|
2016-05-19 15:01:28 +01:00
|
|
|
{
|
|
|
|
$this->call(ArticlesTableSeeder::class);
|
|
|
|
$this->call(ClientsTableSeeder::class);
|
|
|
|
$this->call(ContactsTableSeeder::class);
|
|
|
|
$this->call(PlacesTableSeeder::class);
|
|
|
|
$this->call(NotesTableSeeder::class);
|
2016-11-29 20:53:05 +00:00
|
|
|
$this->call(WebMentionsTableSeeder::class);
|
2017-09-19 16:07:32 +01:00
|
|
|
$this->call(LikesTableSeeder::class);
|
2017-10-10 15:58:07 +01:00
|
|
|
$this->call(BookmarksTableSeeder::class);
|
2019-03-21 19:46:38 +00:00
|
|
|
$this->call(UsersTableSeeder::class);
|
2016-05-19 15:01:28 +01:00
|
|
|
}
|
|
|
|
}
|