コード例 #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
ファイル: Recipes.php プロジェクト: arall/recetarium
 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);
 }