Skip to content

Commit 47622d4

Browse files
committed
fix: Description size in example seeder
1 parent 12a6d68 commit 47622d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

laravel/database/seeds/ExampleSeeder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ public function run()
2222
for($i=0; $i<25; $i++){
2323
DB::table('example')->insert([
2424
'name' => $faker->sentence(4,true),
25-
'description' => $faker->paragraph(3,true),
26-
'status_id' => $statusIds[random_int(0,count($statusIds) - 1)],
25+
'description' => $faker->paragraph(1,true),
26+
'status_id' => $statusIds[random_int(0,count($statusIds) - 1)],
2727
]);
2828
}
2929
}

0 commit comments

Comments
 (0)