Merge branch 'ai-forms'

This commit is contained in:
Julien Nahum
2023-03-27 15:22:10 +02:00
21 changed files with 1097 additions and 14 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class AiGenerateFormRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array<string, mixed>
*/
public function rules()
{
return [
'form_prompt' => 'required|string'
];
}
}