AttributablesController.php 1.7 KB

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