diff options
author | Mateja <mail@matejamaric.com> | 2020-10-07 18:41:35 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-10-07 18:41:35 +0200 |
commit | b981dc8715b36c83107de4c2868e3410a6faf457 (patch) | |
tree | 899a97261d0b901740cfbd949fc0839bb7a1e607 /database/factories/UserFactory.php | |
download | yota-laravel-b981dc8715b36c83107de4c2868e3410a6faf457.tar.gz yota-laravel-b981dc8715b36c83107de4c2868e3410a6faf457.zip |
First commit
Diffstat (limited to 'database/factories/UserFactory.php')
-rw-r--r-- | database/factories/UserFactory.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php new file mode 100644 index 0000000..bdea1a3 --- /dev/null +++ b/database/factories/UserFactory.php @@ -0,0 +1,33 @@ +<?php + +namespace Database\Factories; + +use App\Models\User; +use Illuminate\Database\Eloquent\Factories\Factory; +use Illuminate\Support\Str; + +class UserFactory extends Factory +{ + /** + * The name of the factory's corresponding model. + * + * @var string + */ + protected $model = User::class; + + /** + * Define the model's default state. + * + * @return array + */ + public function definition() + { + return [ + 'name' => $this->faker->name, + 'email' => $this->faker->unique()->safeEmail, + 'email_verified_at' => now(), + 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password + 'remember_token' => Str::random(10), + ]; + } +} |