summaryrefslogtreecommitdiff
path: root/app/Http/Controllers/QuoteController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Http/Controllers/QuoteController.php')
-rw-r--r--app/Http/Controllers/QuoteController.php68
1 files changed, 68 insertions, 0 deletions
diff --git a/app/Http/Controllers/QuoteController.php b/app/Http/Controllers/QuoteController.php
new file mode 100644
index 0000000..0803937
--- /dev/null
+++ b/app/Http/Controllers/QuoteController.php
@@ -0,0 +1,68 @@
+<?php
+
+namespace App\Http\Controllers;
+
+use App\Http\Requests\StoreQuoteRequest;
+use App\Http\Requests\UpdateQuoteRequest;
+use App\Models\Quote;
+
+class QuoteController extends Controller
+{
+ /**
+ * Display a listing of the resource.
+ */
+ public function index()
+ {
+ //
+ }
+
+ /**
+ * Show the form for creating a new resource.
+ */
+ public function create()
+ {
+ //
+ }
+
+ /**
+ * Store a newly created resource in storage.
+ */
+ public function store(StoreQuoteRequest $request)
+ {
+ //
+ $quote = Quote::create($request->validated());
+
+ }
+
+ /**
+ * Display the specified resource.
+ */
+ public function show(Quote $quote)
+ {
+ //
+ }
+
+ /**
+ * Show the form for editing the specified resource.
+ */
+ public function edit(Quote $quote)
+ {
+ //
+ }
+
+ /**
+ * Update the specified resource in storage.
+ */
+ public function update(UpdateQuoteRequest $request, Quote $quote)
+ {
+ //
+ }
+
+ /**
+ * Remove the specified resource from storage.
+ */
+ public function destroy(Quote $quote)
+ {
+ //
+ }
+}