File manager - Edit - /home/u816558632/domains/postills.com/public_html/public/factories.tar
Back
UserFactory.php 0000644 00000001742 15002254246 0007527 0 ustar 00 <?php namespace Database\Factories; use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Str; /* |-------------------------------------------------------------------------- | Model Factories |-------------------------------------------------------------------------- | | Here you may define all of your model factories. Model factories give | you a convenient way to create models for testing and seeding your | database. Just tell the factory how a default model should look. | */ class UserFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition() { static $password; return [ 'name' => $this->faker->name(), 'email' => $this->faker->unique()->safeEmail(), 'password' => $password ?: $password = Hash::make('secret'), 'remember_token' => Str::random(10), ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Generation time: 0 |
proxy
|
phpinfo
|
Settings