Compare commits
29 Commits
Author | SHA1 | Date |
---|---|---|
tribikram | 261c2a7830 | 2 years ago |
Mahesh Sharma | 05224827b2 | 2 years ago |
tribikram | d8f54dde16 | 2 years ago |
tribikram | eefca9f805 | 2 years ago |
Mahesh Sharma | 03a6955528 | 2 years ago |
Mahesh Sharma | 25ba8f6b78 | 2 years ago |
Mahesh Sharma | a21bc7dc07 | 2 years ago |
Mahesh Sharma | 80739d640b | 2 years ago |
Mahesh Sharma | 8682614dcc | 2 years ago |
tribikram | adc6170d09 | 2 years ago |
Mahesh Sharma | c24c537779 | 2 years ago |
Mahesh Sharma | afe69b3ece | 2 years ago |
tribikram | ccb1885902 | 2 years ago |
Mahesh Sharma | 5cdf8d2d80 | 2 years ago |
Mahesh Sharma | a02f4c55ea | 2 years ago |
Mahesh Sharma | 71ba48df89 | 2 years ago |
tribikram | 04a6dc0ec7 | 2 years ago |
tribikram | b6c5010521 | 2 years ago |
Mahesh Sharma | cb9d3aa285 | 2 years ago |
Mahesh Sharma | a6e81c2200 | 2 years ago |
tribikram | dcad18e339 | 2 years ago |
tribikram | ebc821b0d5 | 2 years ago |
tribikram | 4aacfc0308 | 2 years ago |
Mahesh Sharma | c3b6a866fb | 2 years ago |
Mahesh Sharma | b486862ed7 | 2 years ago |
tribikram | a809b34a7b | 2 years ago |
Mahesh Sharma | d250c19200 | 2 years ago |
tribikram | f4ed183a9a | 2 years ago |
Mahesh Sharma | a365114914 | 2 years ago |
@ -0,0 +1,47 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
namespace App\Http\Requests; |
||||||
|
|
||||||
|
use Illuminate\Foundation\Http\FormRequest; |
||||||
|
|
||||||
|
class ContactRequest 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 [ |
||||||
|
'fullname' => ['required'], |
||||||
|
'phone' => ['required'], |
||||||
|
'email' => ['required'], |
||||||
|
'service_id' => ['required'], |
||||||
|
'entered_captcha_code' => ['required','same:displayed_captcha_code'] |
||||||
|
]; |
||||||
|
} |
||||||
|
|
||||||
|
public function messages(){ |
||||||
|
return[ |
||||||
|
|
||||||
|
'fullname.required' => 'Full name is required.', |
||||||
|
'phone.required' => 'Phone number is required.', |
||||||
|
'email.required' => 'Email is required.', |
||||||
|
'service_id.required' => 'Please select a service.', |
||||||
|
'entered_captcha_code.required' => 'Please enter captcha.', |
||||||
|
'entered_captcha_code.same' => 'Captcha is incorrect.' |
||||||
|
|
||||||
|
]; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,51 @@ |
|||||||
|
<?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.' |
||||||
|
]; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,45 @@ |
|||||||
|
<?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.' |
||||||
|
]; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,32 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration; |
||||||
|
use Illuminate\Database\Schema\Blueprint; |
||||||
|
use Illuminate\Support\Facades\Schema; |
||||||
|
|
||||||
|
return new class extends Migration |
||||||
|
{ |
||||||
|
/** |
||||||
|
* Run the migrations. |
||||||
|
* |
||||||
|
* @return void |
||||||
|
*/ |
||||||
|
public function up() |
||||||
|
{ |
||||||
|
Schema::table('services', function (Blueprint $table) { |
||||||
|
$table->string('banner_image')->nullable(); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Reverse the migrations. |
||||||
|
* |
||||||
|
* @return void |
||||||
|
*/ |
||||||
|
public function down() |
||||||
|
{ |
||||||
|
Schema::table('services', function (Blueprint $table) { |
||||||
|
// |
||||||
|
}); |
||||||
|
} |
||||||
|
}; |
After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 770 B |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 712 B |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 506 KiB |
After Width: | Height: | Size: 1.0 MiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 628 KiB |
After Width: | Height: | Size: 628 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 628 KiB |
After Width: | Height: | Size: 628 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 628 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 628 KiB |
After Width: | Height: | Size: 628 KiB |
After Width: | Height: | Size: 70 KiB |
After Width: | Height: | Size: 628 KiB |
After Width: | Height: | Size: 510 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 532 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
After Width: | Height: | Size: 628 KiB |
@ -0,0 +1,2 @@ |
|||||||
|
* |
||||||
|
!.gitignore |