develop
Last change
on this file since b9c4a92 was e6c1f87, checked in by beratkjufliju <kufliju@…>, 3 years ago |
added pagination, is_important
|
-
Property mode
set to
100644
|
File size:
533 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | namespace Database\Seeders;
|
---|
4 |
|
---|
5 | use Illuminate\Database\Seeder;
|
---|
6 |
|
---|
7 | class 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.