Removed unnecessary comments and updated UserSeeder

This commit is contained in:
2022-04-19 14:45:17 +02:00
parent 37783b0077
commit f0fae39614
10 changed files with 17 additions and 120 deletions

View File

@@ -6,14 +6,8 @@ use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
public function run(): void
{
// \App\Models\User::factory(10)->create();
$this->call(CategorySeeder::class);
$this->call(UserSeeder::class);
}