Compare commits
No commits in common. 'master' and 'aplus#32' have entirely different histories.
@ -1,51 +0,0 @@ |
|||||||
<?php |
|
||||||
|
|
||||||
namespace App\Http\Requests\Recruitment; |
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest; |
|
||||||
|
|
||||||
class ApplyRequest 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<string, mixed> |
|
||||||
*/ |
|
||||||
public function rules() |
|
||||||
{ |
|
||||||
return [ |
|
||||||
'full_name' => 'required', |
|
||||||
'phone' => 'required', |
|
||||||
'email' => 'required', |
|
||||||
'file' => 'required', |
|
||||||
'country' => 'required', |
|
||||||
'has_visa_permit' => 'required', |
|
||||||
'has_skill_assessed' => 'required', |
|
||||||
'entered_captcha_code' => ['required','same:displayed_captcha_code'] |
|
||||||
]; |
|
||||||
} |
|
||||||
public function messages() |
|
||||||
{ |
|
||||||
return [ |
|
||||||
'full_name.required' => 'Full name is required.', |
|
||||||
'phone.required' => 'Phone number is required.', |
|
||||||
'email.required' => 'Email is required.', |
|
||||||
'file.required' => 'Please upload your resume.', |
|
||||||
'country.required' => 'Please select your country.', |
|
||||||
'has_visa_permit.required' => 'Please specify your visa permit position.', |
|
||||||
'has_skill_assesed.required' => 'Please specify your TRA skill assessment.', |
|
||||||
'entered_captcha_code.required' => 'Please enter captcha.', |
|
||||||
'entered_captcha_code.same' => 'Captcha is incorrect.' |
|
||||||
]; |
|
||||||
} |
|
||||||
} |
|
@ -1,45 +0,0 @@ |
|||||||
<?php |
|
||||||
|
|
||||||
namespace App\Http\Requests\Recruitment; |
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest; |
|
||||||
|
|
||||||
class VacancyRequest 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<string, mixed> |
|
||||||
*/ |
|
||||||
public function rules() |
|
||||||
{ |
|
||||||
return [ |
|
||||||
'full_name' => 'required', |
|
||||||
'company' => 'required', |
|
||||||
'email' => 'required', |
|
||||||
'no_of_position' => 'required', |
|
||||||
'entered_captcha_code' => ['required','same:displayed_captcha_code'] |
|
||||||
]; |
|
||||||
} |
|
||||||
public function messages() |
|
||||||
{ |
|
||||||
return [ |
|
||||||
'full_name.required' => 'Full name is required.', |
|
||||||
'company.required' => 'Your company is required.', |
|
||||||
'email.required' => 'Email is required.', |
|
||||||
'no_of_position.required' => 'Number of position is required', |
|
||||||
'entered_captcha_code.required' => 'Please enter captcha.', |
|
||||||
'entered_captcha_code.same' => 'Captcha is incorrect.' |
|
||||||
]; |
|
||||||
} |
|
||||||
} |
|
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 770 B After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 712 B After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 506 KiB |
Before Width: | Height: | Size: 1.0 MiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 532 KiB |