PK=ZOfactories/UserFactory.phpnuW+A */ class UserFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition() { return [ 'name' => fake()->name(), 'email' => fake()->unique()->safeEmail(), 'email_verified_at' => now(), 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password 'remember_token' => Str::random(10), ]; } /** * Indicate that the model's email address should be unverified. * * @return static */ public function unverified() { return $this->state(fn (array $attributes) => [ 'email_verified_at' => null, ]); } } PK=Z.W .gitignorenuW+A*.sqlite* PK=Zseeders/DatabaseSeeder.phpnuW+Acreate(); // \App\Models\User::factory()->create([ // 'name' => 'Test User', // 'email' => 'test@example.com', // ]); } } PK=ZGDmigrations/2019_12_14_000001_create_personal_access_tokens_table.phpnuW+Aid(); $table->morphs('tokenable'); $table->string('name'); $table->string('token', 64)->unique(); $table->text('abilities')->nullable(); $table->timestamp('last_used_at')->nullable(); $table->timestamp('expires_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('personal_access_tokens'); } }; PK=Zd'=migrations/2014_10_12_100000_create_password_resets_table.phpnuW+Astring('email')->index(); $table->string('token'); $table->timestamp('created_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('password_resets'); } }; PK=Z)3migrations/2014_10_12_000000_create_users_table.phpnuW+Aid(); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }; PK=Z**9migrations/2019_08_19_000000_create_failed_jobs_table.phpnuW+Aid(); $table->string('uuid')->unique(); $table->text('connection'); $table->text('queue'); $table->longText('payload'); $table->longText('exception'); $table->timestamp('failed_at')->useCurrent(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('failed_jobs'); } }; PK=ZOfactories/UserFactory.phpnuW+APK=Z.W .gitignorenuW+APK=ZWseeders/DatabaseSeeder.phpnuW+APK=ZGDmigrations/2019_12_14_000001_create_personal_access_tokens_table.phpnuW+APK=Zd'= migrations/2014_10_12_100000_create_password_resets_table.phpnuW+APK=Z)3 migrations/2014_10_12_000000_create_users_table.phpnuW+APK=Z**9 migrations/2019_08_19_000000_create_failed_jobs_table.phpnuW+APK