Category.php 1.5 KB

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