お惣菜コーナーの表示件数を少し増やす

This commit is contained in:
shibafu 2019-01-12 00:14:51 +09:00
parent ca02f21812
commit 20799dd757

View File

@ -44,7 +44,7 @@ class HomeController extends Controller
->orderBy('ejaculations.ejaculated_date', 'desc') ->orderBy('ejaculations.ejaculated_date', 'desc')
->select('ejaculations.*') ->select('ejaculations.*')
->with('user', 'tags') ->with('user', 'tags')
->take(5) ->take(10)
->get(); ->get();
return view('home')->with(compact('informations', 'categories', 'publicLinkedEjaculations')); return view('home')->with(compact('informations', 'categories', 'publicLinkedEjaculations'));