CorpusController.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php namespace App\Http\Controllers;
  2. class CorpusController extends Controller {
  3. /**
  4. * Display a listing of the resource.
  5. *
  6. * @return Response
  7. */
  8. public function index()
  9. {
  10. }
  11. /**
  12. * Show the form for creating a new resource.
  13. *
  14. * @return Response
  15. */
  16. public function create()
  17. {
  18. }
  19. /**
  20. * Store a newly created resource in storage.
  21. *
  22. * @return Response
  23. */
  24. public function store()
  25. {
  26. }
  27. /**
  28. * Display the specified resource.
  29. *
  30. * @param int $id
  31. * @return Response
  32. */
  33. public function show($id)
  34. {
  35. }
  36. /**
  37. * Show the form for editing the specified resource.
  38. *
  39. * @param int $id
  40. * @return Response
  41. */
  42. public function edit($id)
  43. {
  44. }
  45. /**
  46. * Update the specified resource in storage.
  47. *
  48. * @param int $id
  49. * @return Response
  50. */
  51. public function update($id)
  52. {
  53. }
  54. /**
  55. * Remove the specified resource from storage.
  56. *
  57. * @param int $id
  58. * @return Response
  59. */
  60. public function destroy($id)
  61. {
  62. }
  63. }
  64. ?>