52 lines
1.5 KiB
PHP
52 lines
1.5 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Requests;
|
||
|
|
|
||
|
|
use Illuminate\Contracts\Validation\Validator;
|
||
|
|
use Illuminate\Http\Exceptions\HttpResponseException;
|
||
|
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
use Illuminate\Support\Facades\Log;
|
||
|
|
|
||
|
|
class CreateCustomerRequest 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 [
|
||
|
|
'country' => 'required|string',
|
||
|
|
'state' => 'required|string|max:255',
|
||
|
|
'city' => 'required|string|max:255',
|
||
|
|
'address' => 'required|string|max:255',
|
||
|
|
'address2' => 'nullable|string|max:255',
|
||
|
|
'zip' => 'required|string|max:20',
|
||
|
|
'phone' => 'nullable|string|max:20',
|
||
|
|
'email' => 'required|email|max:255',
|
||
|
|
'title' => 'required|string|max:255',
|
||
|
|
];
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Handle a failed validation attempt.
|
||
|
|
*
|
||
|
|
* @param \Illuminate\Contracts\Validation\Validator $validator
|
||
|
|
* @throws \Illuminate\Http\Exceptions\HttpResponseException
|
||
|
|
*/
|
||
|
|
protected function failedValidation(Validator $validator)
|
||
|
|
{
|
||
|
|
throw new HttpResponseException(jsonResponseWithErrorMessage(implode(', ', $validator->errors()->all()), 422));
|
||
|
|
}
|
||
|
|
}
|