46 lines
		
	
	
		
			929 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			929 B
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Oxbow;
 | |
| 
 | |
| class Book extends Entity
 | |
| {
 | |
| 
 | |
|     protected $fillable = ['name', 'description'];
 | |
| 
 | |
|     public function getUrl()
 | |
|     {
 | |
|         return '/books/' . $this->slug;
 | |
|     }
 | |
| 
 | |
|     public function getEditUrl()
 | |
|     {
 | |
|         return $this->getUrl() . '/edit';
 | |
|     }
 | |
| 
 | |
|     public function pages()
 | |
|     {
 | |
|         return $this->hasMany('Oxbow\Page');
 | |
|     }
 | |
| 
 | |
|     public function chapters()
 | |
|     {
 | |
|         return $this->hasMany('Oxbow\Chapter');
 | |
|     }
 | |
| 
 | |
|     public function children()
 | |
|     {
 | |
|         $pages = $this->pages()->where('chapter_id', '=', 0)->get();
 | |
|         $chapters = $this->chapters()->get();
 | |
|         foreach($chapters as $chapter) {
 | |
|             $pages->push($chapter);
 | |
|         }
 | |
|         return $pages->sortBy('priority');
 | |
|     }
 | |
| 
 | |
|     public function getExcerpt($length = 100)
 | |
|     {
 | |
|         return strlen($this->description) > $length ? substr($this->description, 0, $length-3) . '...' : $this->description;
 | |
|     }
 | |
| 
 | |
| }
 |