123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
-
- namespace App\Http\Controllers;
-
- use Illuminate\Http\Request;
-
- class enquiry extends Controller
- {
- /**
- * Display a listing of the resource.
- */
- public function index()
- {
- //
- }
-
- /**
- * Store a newly created resource in storage.
- */
- public function store(Request $request)
- {
- //
- }
-
- /**
- * Display the specified resource.
- */
- public function show(string $id)
- {
- //
- }
-
- /**
- * Update the specified resource in storage.
- */
- public function update(Request $request, string $id)
- {
- //
- }
-
- /**
- * Remove the specified resource from storage.
- */
- public function destroy(string $id)
- {
- //
- }
- }
|