OrdersController.txt 1.2 KB

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