mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-03 02:13:16 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			97 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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(\BookStack\Auth\User::class, function ($faker) {
 | 
						|
    $name = $faker->name;
 | 
						|
 | 
						|
    return [
 | 
						|
        'name'            => $name,
 | 
						|
        'email'           => $faker->email,
 | 
						|
        'slug'            => \Illuminate\Support\Str::slug($name . '-' . \Illuminate\Support\Str::random(5)),
 | 
						|
        'password'        => Str::random(10),
 | 
						|
        'remember_token'  => Str::random(10),
 | 
						|
        'email_confirmed' => 1,
 | 
						|
    ];
 | 
						|
});
 | 
						|
 | 
						|
$factory->define(\BookStack\Entities\Models\Bookshelf::class, function ($faker) {
 | 
						|
    return [
 | 
						|
        'name'        => $faker->sentence,
 | 
						|
        'slug'        => Str::random(10),
 | 
						|
        'description' => $faker->paragraph,
 | 
						|
    ];
 | 
						|
});
 | 
						|
 | 
						|
$factory->define(\BookStack\Entities\Models\Book::class, function ($faker) {
 | 
						|
    return [
 | 
						|
        'name'        => $faker->sentence,
 | 
						|
        'slug'        => Str::random(10),
 | 
						|
        'description' => $faker->paragraph,
 | 
						|
    ];
 | 
						|
});
 | 
						|
 | 
						|
$factory->define(\BookStack\Entities\Models\Chapter::class, function ($faker) {
 | 
						|
    return [
 | 
						|
        'name'        => $faker->sentence,
 | 
						|
        'slug'        => Str::random(10),
 | 
						|
        'description' => $faker->paragraph,
 | 
						|
    ];
 | 
						|
});
 | 
						|
 | 
						|
$factory->define(\BookStack\Entities\Models\Page::class, function ($faker) {
 | 
						|
    $html = '<p>' . implode('</p>', $faker->paragraphs(5)) . '</p>';
 | 
						|
 | 
						|
    return [
 | 
						|
        'name'           => $faker->sentence,
 | 
						|
        'slug'           => Str::random(10),
 | 
						|
        'html'           => $html,
 | 
						|
        'text'           => strip_tags($html),
 | 
						|
        'revision_count' => 1,
 | 
						|
    ];
 | 
						|
});
 | 
						|
 | 
						|
$factory->define(\BookStack\Auth\Role::class, function ($faker) {
 | 
						|
    return [
 | 
						|
        'display_name' => $faker->sentence(3),
 | 
						|
        'description'  => $faker->sentence(10),
 | 
						|
    ];
 | 
						|
});
 | 
						|
 | 
						|
$factory->define(\BookStack\Actions\Tag::class, function ($faker) {
 | 
						|
    return [
 | 
						|
        'name'  => $faker->city,
 | 
						|
        'value' => $faker->sentence(3),
 | 
						|
    ];
 | 
						|
});
 | 
						|
 | 
						|
$factory->define(\BookStack\Uploads\Image::class, function ($faker) {
 | 
						|
    return [
 | 
						|
        'name'        => $faker->slug . '.jpg',
 | 
						|
        'url'         => $faker->url,
 | 
						|
        'path'        => $faker->url,
 | 
						|
        'type'        => 'gallery',
 | 
						|
        'uploaded_to' => 0,
 | 
						|
    ];
 | 
						|
});
 | 
						|
 | 
						|
$factory->define(\BookStack\Actions\Comment::class, function ($faker) {
 | 
						|
    $text = $faker->paragraph(1);
 | 
						|
    $html = '<p>' . $text . '</p>';
 | 
						|
 | 
						|
    return [
 | 
						|
        'html'      => $html,
 | 
						|
        'text'      => $text,
 | 
						|
        'parent_id' => null,
 | 
						|
    ];
 | 
						|
});
 |