source: database/seeders/DatabaseSeeder.php@ b375b43

develop
Last change on this file since b375b43 was b375b43, checked in by beratkjufliju <kufliju@…>, 3 years ago

edited seeders

  • Property mode set to 100644
File size: 631 bytes
RevLine 
[2fc88ec]1<?php
2
3namespace Database\Seeders;
4
5use Illuminate\Database\Seeder;
6
7class DatabaseSeeder extends Seeder
8{
9 /**
10 * Seed the application's database.
11 *
12 * @return void
13 */
14 public function run()
15 {
[53d99ce]16 $this->call(RolesTableSeeder::class);
[d7aa044]17 $this->call(PermissionsTableSeeder::class);
[b375b43]18 //$this->call(RolesPermissionsTableSeeder::class);
[7304c7f]19 $this->call(UsersTableSeeder::class);
[194a359]20 $this->call(DepartmentsTableSeeder::class);
[4b7e2d3]21 $this->call(FileTypesTableSeeder::class);
[c6b84df]22 $this->call(FoldersTableSeeder::class);
[b39afb5]23 //$this->call(FilesTableSeeder::class);
[2fc88ec]24 }
25}
Note: See TracBrowser for help on using the repository browser.