text4u
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\Request;
  4. class enquiry extends Controller
  5. {
  6. /**
  7. * Display a listing of the resource.
  8. */
  9. public function index()
  10. {
  11. //
  12. }
  13. /**
  14. * Store a newly created resource in storage.
  15. */
  16. public function store(Request $request)
  17. {
  18. //
  19. }
  20. /**
  21. * Display the specified resource.
  22. */
  23. public function show(string $id)
  24. {
  25. //
  26. }
  27. /**
  28. * Update the specified resource in storage.
  29. */
  30. public function update(Request $request, string $id)
  31. {
  32. //
  33. }
  34. /**
  35. * Remove the specified resource from storage.
  36. */
  37. public function destroy(string $id)
  38. {
  39. //
  40. }
  41. }