AttachmentMapController.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. namespace App\Http\Controllers;
  3. use App\Http\Requests\StoreAttachmentMapRequest;
  4. use App\Http\Requests\UpdateAttachmentMapRequest;
  5. use App\Models\AttachmentMap;
  6. class AttachmentMapController extends Controller
  7. {
  8. /**
  9. * Display a listing of the resource.
  10. *
  11. * @return \Illuminate\Http\Response
  12. */
  13. public function index()
  14. {
  15. //
  16. }
  17. /**
  18. * Store a newly created resource in storage.
  19. *
  20. * @param \App\Http\Requests\StoreAttachmentMapRequest $request
  21. * @return \Illuminate\Http\Response
  22. */
  23. public function store(StoreAttachmentMapRequest $request)
  24. {
  25. //
  26. }
  27. /**
  28. * Display the specified resource.
  29. *
  30. * @param \App\Models\AttachmentMap $attachmentMap
  31. * @return \Illuminate\Http\Response
  32. */
  33. public function show(AttachmentMap $attachmentMap)
  34. {
  35. //
  36. }
  37. /**
  38. * Update the specified resource in storage.
  39. *
  40. * @param \App\Http\Requests\UpdateAttachmentMapRequest $request
  41. * @param \App\Models\AttachmentMap $attachmentMap
  42. * @return \Illuminate\Http\Response
  43. */
  44. public function update(UpdateAttachmentMapRequest $request, AttachmentMap $attachmentMap)
  45. {
  46. //
  47. }
  48. /**
  49. * Remove the specified resource from storage.
  50. *
  51. * @param \App\Models\AttachmentMap $attachmentMap
  52. * @return \Illuminate\Http\Response
  53. */
  54. public function destroy(AttachmentMap $attachmentMap)
  55. {
  56. //
  57. }
  58. }