示例#1
0
 /**
  * Delete a record
  * @param  mixed $id
  * @return Response
  */
 public function destroy($id)
 {
     // Later, make sure resource exist and user is authorized
     $this->noteRepository->delete($id);
 }