62 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php namespace Oxbow\Repos;
 | |
| 
 | |
| 
 | |
| use Illuminate\Support\Str;
 | |
| use Oxbow\Page;
 | |
| 
 | |
| class PageRepo
 | |
| {
 | |
|     protected $page;
 | |
| 
 | |
|     /**
 | |
|      * PageRepo constructor.
 | |
|      * @param $page
 | |
|      */
 | |
|     public function __construct(Page $page)
 | |
|     {
 | |
|         $this->page = $page;
 | |
|     }
 | |
| 
 | |
|     public function getById($id)
 | |
|     {
 | |
|         return $this->page->findOrFail($id);
 | |
|     }
 | |
| 
 | |
|     public function getAll()
 | |
|     {
 | |
|         return $this->page->all();
 | |
|     }
 | |
| 
 | |
|     public function getBySlug($slug, $bookId)
 | |
|     {
 | |
|         return $this->page->where('slug', '=', $slug)->where('book_id', '=', $bookId)->first();
 | |
|     }
 | |
| 
 | |
|     public function newFromInput($input)
 | |
|     {
 | |
|         $page = $this->page->fill($input);
 | |
|         return $page;
 | |
|     }
 | |
| 
 | |
|     public function countBySlug($slug, $bookId)
 | |
|     {
 | |
|         return $this->page->where('slug', '=', $slug)->where('book_id', '=', $bookId)->count();
 | |
|     }
 | |
| 
 | |
|     public function destroyById($id)
 | |
|     {
 | |
|         $page = $this->getById($id);
 | |
|         $page->delete();
 | |
|     }
 | |
| 
 | |
|     public function getBySearch($term)
 | |
|     {
 | |
|         $terms = explode(' ', trim($term));
 | |
|         $query = $this->page;
 | |
|         foreach($terms as $term) {
 | |
|             $query = $query->where('text', 'like', '%'.$term.'%');
 | |
|         }
 | |
|         return $query->get();
 | |
|     }
 | |
| 
 | |
| } |