| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use Illuminate\Database\Seeder; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class DummyContentSeeder extends Seeder | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Run the database seeds. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function run() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $user = factory(BookStack\User::class, 1)->create(); | 
					
						
							| 
									
										
										
										
											2016-01-02 22:48:35 +08:00
										 |  |  |         $role = \BookStack\Role::getDefault(); | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  |         $user->attachRole($role); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $books = factory(BookStack\Book::class, 20)->create(['created_by' => $user->id, 'updated_by' => $user->id]) | 
					
						
							|  |  |  |             ->each(function($book) use ($user) { | 
					
						
							|  |  |  |                 $chapters = factory(BookStack\Chapter::class, 5)->create(['created_by' => $user->id, 'updated_by' => $user->id]) | 
					
						
							|  |  |  |                     ->each(function($chapter) use ($user, $book){ | 
					
						
							|  |  |  |                        $pages = factory(\BookStack\Page::class, 10)->make(['created_by' => $user->id, 'updated_by' => $user->id, 'book_id' => $book->id]); | 
					
						
							|  |  |  |                         $chapter->pages()->saveMany($pages); | 
					
						
							|  |  |  |                     }); | 
					
						
							| 
									
										
										
										
											2015-12-03 03:10:05 +08:00
										 |  |  |                 $pages = factory(\BookStack\Page::class, 3)->make(['created_by' => $user->id, 'updated_by' => $user->id]); | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  |                 $book->chapters()->saveMany($chapters); | 
					
						
							| 
									
										
										
										
											2015-12-03 03:10:05 +08:00
										 |  |  |                 $book->pages()->saveMany($pages); | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  |             }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |