source: database/seeders/DatabaseSeeder.php@ ea7b12a

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

added files crud in table

  • Property mode set to 100644
File size: 535 bytes
Line 
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 {
16 $this->call(RolesTableSeeder::class);
17 $this->call(PermissionsTableSeeder::class);
18 $this->call(RolesPermissionsTableSeeder::class);
19 $this->call(UsersTableSeeder::class);
20 $this->call(DepartmentsTableSeeder::class);
21 //$this->call(DocumentsTableSeeder::class);
22 }
23}
Note: See TracBrowser for help on using the repository browser.