-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGuestCourseRegistrationRequest.php
44 lines (39 loc) · 1.23 KB
/
GuestCourseRegistrationRequest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
namespace App\Http\Requests\CourseRegistration;
use App\Models\Course;
use App\ValueObjects\StoreGuestCourseRegistration;
use Illuminate\Foundation\Http\FormRequest;
class GuestCourseRegistrationRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
*/
public function rules(): array
{
return [
'name' => 'required|string|min:2|max:30|regex:/^[a-zA-ZÀ-ž\s\'-]+$/',
'last_name' => 'required|string|min:2|max:30|regex:/^[a-zA-ZÀ-ž\s\'-]+$/',
'email' => 'required|email|unique:users,email',
'phone' => 'required|regex:/^\+?\d{9,15}$/',
];
}
public function getGuestCourseRegistration(Course $course): StoreGuestCourseRegistration
{
return new StoreGuestCourseRegistration(
$course->id,
$this->get('name'),
$this->get('last_name'),
$this->get('email'),
$this->get('phone'),
);
}
}