Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. class ContactController extends BaseController {
  2.  
  3. /**
  4. * Display a listing of the resource.
  5. *
  6. * @return Response
  7. */
  8. public function index()
  9. {
  10. //
  11. echo "hieeeeeeeeeeeeeeeee";
  12. }
  13.  
  14.  
  15. /**
  16. * Show the form for creating a new resource.
  17. *
  18. * @return Response
  19. */
  20. public function create()
  21. {
  22. //
  23. }
  24.  
  25.  
  26. /**
  27. * Store a newly created resource in storage.
  28. *
  29. * @return Response
  30. */
  31. public function store()
  32. {
  33. //
  34. }
  35.  
  36.  
  37. /**
  38. * Display the specified resource.
  39. *
  40. * @param int $id
  41. * @return Response
  42. */
  43. public function show($id)
  44. {
  45. //
  46. }
  47.  
  48.  
  49. /**
  50. * Show the form for editing the specified resource.
  51. *
  52. * @param int $id
  53. * @return Response
  54. */
  55. public function edit($id)
  56. {
  57. //
  58. }
  59.  
  60.  
  61. /**
  62. * Update the specified resource in storage.
  63. *
  64. * @param int $id
  65. * @return Response
  66. */
  67. public function update($id)
  68. {
  69. //
  70. }
  71.  
  72.  
  73. /**
  74. * Remove the specified resource from storage.
  75. *
  76. * @param int $id
  77. * @return Response
  78. */
  79. public function destroy($id)
  80. {
  81. //
  82. }
  83.  
  84.  
  85. }
  86.  
  87. Route::get('contact', "contactController@index");
  88.  
  89. Route::get('contact', "ContactController@index");
  90.  
  91. php artisan controller:make ContactController
  92.  
  93. Route::get("contact", "ContactController@index");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement