2
0

CommentaryController.php 1.3 KB

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