예제 #1
0
파일: Recipe.php 프로젝트: arall/recetarium
 protected function getRecipe()
 {
     $slug = $this->property('slug');
     return RecipeModel::with('course', 'tools', 'ingredients')->where('slug', $slug)->first();
 }
예제 #2
0
 protected function listRecipes()
 {
     return Recipe::with('course')->paginate($this->page['recipesPerPage']);
 }
예제 #3
0
파일: Slider.php 프로젝트: arall/recetarium
 protected function listRecipes()
 {
     return Recipe::with('course')->paginate(5);
 }