2015-07-13 03:01:42 +08:00
|
|
|
<?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.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-09-11 02:31:09 +08:00
|
|
|
$factory->define(BookStack\User::class, function ($faker) {
|
2015-07-13 03:01:42 +08:00
|
|
|
return [
|
2015-09-03 01:26:33 +08:00
|
|
|
'name' => $faker->name,
|
|
|
|
'email' => $faker->email,
|
|
|
|
'password' => str_random(10),
|
2015-07-13 03:01:42 +08:00
|
|
|
'remember_token' => str_random(10),
|
|
|
|
];
|
|
|
|
});
|
2015-09-03 01:26:33 +08:00
|
|
|
|
2015-09-11 02:31:09 +08:00
|
|
|
$factory->define(BookStack\Book::class, function ($faker) {
|
2015-09-03 01:26:33 +08:00
|
|
|
return [
|
|
|
|
'name' => $faker->sentence,
|
2015-11-27 07:45:04 +08:00
|
|
|
'slug' => str_random(10),
|
2015-09-03 01:26:33 +08:00
|
|
|
'description' => $faker->paragraph
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2015-09-11 02:31:09 +08:00
|
|
|
$factory->define(BookStack\Chapter::class, function ($faker) {
|
2015-09-03 01:26:33 +08:00
|
|
|
return [
|
|
|
|
'name' => $faker->sentence,
|
2015-11-27 07:45:04 +08:00
|
|
|
'slug' => str_random(10),
|
2015-09-03 01:26:33 +08:00
|
|
|
'description' => $faker->paragraph
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2015-09-11 02:31:09 +08:00
|
|
|
$factory->define(BookStack\Page::class, function ($faker) {
|
2015-09-03 01:26:33 +08:00
|
|
|
return [
|
|
|
|
'name' => $faker->sentence,
|
2015-11-27 07:45:04 +08:00
|
|
|
'slug' => str_random(10),
|
2015-09-03 01:26:33 +08:00
|
|
|
'html' => '<p>' . implode('</p>', $faker->paragraphs(5)) . '</p>'
|
|
|
|
];
|
2015-09-11 03:28:53 +08:00
|
|
|
});
|