diff options
| author | Camil Staps | 2019-12-30 16:57:13 +0100 | 
|---|---|---|
| committer | Camil Staps | 2020-01-03 19:06:02 +0100 | 
| commit | ad10a6467f76822b9289832eeb0d0ac2038b32d1 (patch) | |
| tree | 1d78251ad49be1a744dc4573a1b3cf54e295e3a4 /database/factories/ModelFactory.php | |
| parent | Clarify incorrect parsing message when input is short (diff) | |
Strip down for simple app for Greek verb λύω
Diffstat (limited to 'database/factories/ModelFactory.php')
| -rw-r--r-- | database/factories/ModelFactory.php | 23 | 
1 files changed, 0 insertions, 23 deletions
| diff --git a/database/factories/ModelFactory.php b/database/factories/ModelFactory.php deleted file mode 100644 index e0dc869..0000000 --- a/database/factories/ModelFactory.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -/* -|-------------------------------------------------------------------------- -| 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. -| -*/ - -$factory->define(App\User::class, function (Faker\Generator $faker) { -    static $password; - -    return [ -        'name' => $faker->name, -        'email' => $faker->unique()->safeEmail, -        'password' => $password ?: $password = bcrypt('secret'), -        'remember_token' => str_random(10), -    ]; -}); | 
