Brak opisu

SectionsController.php 1.0KB

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