コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     return $this->service->all();
 }
コード例 #2
0
 public function update(Request $request, $id)
 {
     return $this->service->update($request->all(), $id);
 }