source: database/seeders/DatabaseSeeder.php@ 7304c7f

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

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 431 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 }
21}
Note: See TracBrowser for help on using the repository browser.