MilestoneController.php 1012 B

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