- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
This commit is contained in:
47
app/Http/Requests/Member/AddressStore.php
Normal file
47
app/Http/Requests/Member/AddressStore.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests\Member;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class AddressStore extends FormRequest
|
||||
{
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function authorize()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
"id" => 'sometimes|numeric',
|
||||
"member_id" => 'required|numeric',
|
||||
'indicating' => '',
|
||||
'type' => 'required|max:255',
|
||||
'first_name_contact_person' => '',
|
||||
'last_name_contact_person' => '',
|
||||
'infix' => '',
|
||||
'email' => 'required_if:type,==,invoice',
|
||||
'phone' => '',
|
||||
'address' => '',
|
||||
'postal' => '',
|
||||
'city' => '',
|
||||
'title_contact_person' => '',
|
||||
'initials_contact_person' => '',
|
||||
'middle_name_contact_person' => '',
|
||||
'job_title_contact_person' => '',
|
||||
'house_number' => '',
|
||||
'country' => '',
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user