except_controller.php 995 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. use BaseController;
  3. class FooController extends BaseController
  4. {
  5. /**
  6. * Show the form for creating a new resource.
  7. *
  8. * @return \Illuminate\Http\Response
  9. */
  10. public function create()
  11. {
  12. //
  13. }
  14. /**
  15. * Store a newly created resource in storage.
  16. *
  17. * @return \Illuminate\Http\Response
  18. */
  19. public function store()
  20. {
  21. //
  22. }
  23. /**
  24. * Show the form for editing the specified resource.
  25. *
  26. * @param int $id
  27. * @return \Illuminate\Http\Response
  28. */
  29. public function edit($id)
  30. {
  31. //
  32. }
  33. /**
  34. * Update the specified resource in storage.
  35. *
  36. * @param int $id
  37. * @return \Illuminate\Http\Response
  38. */
  39. public function update($id)
  40. {
  41. //
  42. }
  43. /**
  44. * Remove the specified resource from storage.
  45. *
  46. * @param int $id
  47. * @return \Illuminate\Http\Response
  48. */
  49. public function destroy($id)
  50. {
  51. //
  52. }
  53. }