feat(Notification & membership route)

This commit is contained in:
2025-10-26 00:16:25 +02:00
parent 868b9a837b
commit ac0a89e34d
19 changed files with 393 additions and 279 deletions

View File

@@ -11,7 +11,7 @@ class ContactRequest extends FormRequest
*/
public function authorize(): bool
{
return false;
return true;
}
/**

View File

@@ -11,7 +11,7 @@ class MembershipRequest extends FormRequest
*/
public function authorize(): bool
{
return false;
return true;
}
/**
@@ -26,12 +26,11 @@ class MembershipRequest extends FormRequest
'lastname' => 'required|string|max:255',
'firstname' => 'required|string|max:255',
'email' => 'required|email|max:255',
'company' => 'required|string|max:255',
'company' => 'string|max:255',
'address' => 'required|string|max:255',
'zipcode' => 'required|string|max:255',
'city' => 'required|string|max:255',
'phone1' => 'required|string|max:255',
'group_id' => 'required|string|max:255',
// Membership
'package' => 'required|string|max:255',