* #2 - wip * #2 - wip * #2 - ui fixes to login page * #2 - fix * #2 - fix * #2 - add title to login page * Apply suggestions from code review Co-authored-by: Krzysztof Rewak <krzysztof.rewak@blumilk.pl> * #2 - cr fix * #2 - cr fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl> Co-authored-by: Krzysztof Rewak <krzysztof.rewak@blumilk.pl>
This commit is contained in:
@@ -5,7 +5,6 @@ declare(strict_types=1);
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
class UserFactory extends Factory
|
||||
@@ -15,8 +14,6 @@ class UserFactory extends Factory
|
||||
return [
|
||||
"name" => $this->faker->name(),
|
||||
"email" => $this->faker->unique()->safeEmail(),
|
||||
"email_verified_at" => now(),
|
||||
"password" => Hash::make("secret123"),
|
||||
"remember_token" => Str::random(10),
|
||||
];
|
||||
}
|
||||
|
Reference in New Issue
Block a user