source: database/seeds/DatabaseSeeder.php

Last change on this file was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago

initial commit

  • Property mode set to 100644
File size: 653 bytes
RevLine 
[0924b6c]1<?php
2
3use Illuminate\Database\Seeder;
4
5class DatabaseSeeder extends Seeder
6{
7 /**
8 * Seed the application's database.
9 *
10 * @return void
11 */
12 public function run()
13 {
14 $this->call(RolesTableSeeder::class);
15 $this->call(PermissionsTableSeeder::class);
16 $this->call(RolesPermissionsTableSeeder::class);
17 $this->call(UsersTableSeeder::class);
18 $this->call(UserProfilesTableSeeder::class);
19 $this->call(CategoriesTableSeeder::class);
20// $this->call(TagsTableSeeder::class);
21// $this->call(PostsTableSeeder::class);
22// $this->call(PostsTagsTableSeeder::class);
23 }
24}
Note: See TracBrowser for help on using the repository browser.