Changeset 7304c7f for database/seeders


Ignore:
Timestamp:
09/27/21 23:25:43 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
develop, master
Children:
582789f
Parents:
2fc88ec
Message:

added user authentication, create & forgot password methods and blades

Location:
database/seeders
Files:
4 added
1 edited

Legend:

Unmodified
Added
Removed
  • database/seeders/DatabaseSeeder.php

    r2fc88ec r7304c7f  
    1414    public function run()
    1515    {
    16         // \App\Models\User::factory(10)->create();
     16        $this->call(RolesTableSeeder::class);
     17        $this->call(PermissionsTableSeeder::class);
     18        $this->call(RolesPermissionsTableSeeder::class);
     19        $this->call(UsersTableSeeder::class);
    1720    }
    1821}
Note: See TracChangeset for help on using the changeset viewer.