summaryrefslogtreecommitdiff
path: root/app/Http/Requests/StoreQuoteRequest.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Http/Requests/StoreQuoteRequest.php')
-rw-r--r--app/Http/Requests/StoreQuoteRequest.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/app/Http/Requests/StoreQuoteRequest.php b/app/Http/Requests/StoreQuoteRequest.php
new file mode 100644
index 0000000..e9859fb
--- /dev/null
+++ b/app/Http/Requests/StoreQuoteRequest.php
@@ -0,0 +1,28 @@
+<?php
+
+namespace App\Http\Requests;
+
+use Illuminate\Foundation\Http\FormRequest;
+
+class StoreQuoteRequest extends FormRequest
+{
+ /**
+ * Determine if the user is authorized to make this request.
+ */
+ public function authorize(): bool
+ {
+ return false;
+ }
+
+ /**
+ * Get the validation rules that apply to the request.
+ *
+ * @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
+ */
+ public function rules(): array
+ {
+ return [
+ //
+ ];
+ }
+}