コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index($productId)
 {
     return Description::ofProduct($productId)->paginate();
 }
コード例 #2
0
 public function index($productId, Request $request)
 {
     return Description::ofProduct($productId)->withKeyword($request->input('keyword'))->paginate(15);
 }