57 lines
1.4 KiB
PHP
57 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Webkul\Customer\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Webkul\Core\Contracts\Validations\Address;
|
|
use Webkul\Core\Contracts\Validations\AlphaNumericSpace;
|
|
use Webkul\Core\Contracts\Validations\PhoneNumber;
|
|
use Webkul\Customer\Rules\VatIdRule;
|
|
|
|
class CustomerAddressRequest 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 [
|
|
'company_name' => [new AlphaNumericSpace],
|
|
'first_name' => ['required', new AlphaNumericSpace],
|
|
'last_name' => ['required', new AlphaNumericSpace],
|
|
'address1' => ['required', 'array'],
|
|
'address1.*' => ['required', new Address],
|
|
'country' => [new AlphaNumericSpace],
|
|
'state' => [new AlphaNumericSpace],
|
|
'city' => ['required'],
|
|
'postcode' => ['numeric'],
|
|
'phone' => ['required', new PhoneNumber],
|
|
'vat_id' => [new VatIdRule()],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Attributes.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function attributes()
|
|
{
|
|
return [
|
|
'address1.*' => 'address',
|
|
];
|
|
}
|
|
}
|