Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
tribikram | 82808e2594 | 2 years ago |
tribikram | 48d51fa978 | 2 years ago |
@ -1,47 +0,0 @@ |
|||||||
<?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.' |
|
||||||
|
|
||||||
]; |
|
||||||
} |
|
||||||
} |
|
@ -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.' |
|
||||||
]; |
|
||||||
} |
|
||||||
} |
|
@ -1,38 +0,0 @@ |
|||||||
<?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::create('applicants', function (Blueprint $table) { |
|
||||||
$table->id(); |
|
||||||
$table->string('full_name'); |
|
||||||
$table->string('phone'); |
|
||||||
$table->string('email'); |
|
||||||
$table->boolean('has_visa_permit'); |
|
||||||
$table->boolean('has_skill_assessed'); |
|
||||||
$table->string('resume'); |
|
||||||
$table->string('country'); |
|
||||||
$table->timestamps(); |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* Reverse the migrations. |
|
||||||
* |
|
||||||
* @return void |
|
||||||
*/ |
|
||||||
public function down() |
|
||||||
{ |
|
||||||
Schema::dropIfExists('applicants'); |
|
||||||
} |
|
||||||
}; |
|
@ -1,32 +0,0 @@ |
|||||||
<?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('image'); |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* Reverse the migrations. |
|
||||||
* |
|
||||||
* @return void |
|
||||||
*/ |
|
||||||
public function down() |
|
||||||
{ |
|
||||||
Schema::table('services', function (Blueprint $table) { |
|
||||||
// |
|
||||||
}); |
|
||||||
} |
|
||||||
}; |
|
@ -1,32 +0,0 @@ |
|||||||
<?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('visa_services', function (Blueprint $table) { |
|
||||||
$table->string('image')->nullable(); |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* Reverse the migrations. |
|
||||||
* |
|
||||||
* @return void |
|
||||||
*/ |
|
||||||
public function down() |
|
||||||
{ |
|
||||||
Schema::table('visa_services', function (Blueprint $table) { |
|
||||||
// |
|
||||||
}); |
|
||||||
} |
|
||||||
}; |
|
@ -1,32 +0,0 @@ |
|||||||
<?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('news_and_updates', function (Blueprint $table) { |
|
||||||
$table->string('thumbnail'); |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* Reverse the migrations. |
|
||||||
* |
|
||||||
* @return void |
|
||||||
*/ |
|
||||||
public function down() |
|
||||||
{ |
|
||||||
Schema::table('news_and_updates', function (Blueprint $table) { |
|
||||||
// |
|
||||||
}); |
|
||||||
} |
|
||||||
}; |
|
@ -1,32 +0,0 @@ |
|||||||
<?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) { |
|
||||||
// |
|
||||||
}); |
|
||||||
} |
|
||||||
}; |
|
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 90 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 |
Before Width: | Height: | Size: 734 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 573 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 |
Before Width: | Height: | Size: 775 KiB |
Before Width: | Height: | Size: 526 KiB |
Before Width: | Height: | Size: 526 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 626 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 628 KiB |
Before Width: | Height: | Size: 628 KiB |
Before Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 628 KiB |
Before Width: | Height: | Size: 628 KiB |
Before Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 628 KiB |
Before Width: | Height: | Size: 82 KiB |
Before Width: | Height: | Size: 628 KiB |
Before Width: | Height: | Size: 628 KiB |
Before Width: | Height: | Size: 70 KiB |
After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 398 KiB |
Before Width: | Height: | Size: 197 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 2.6 MiB |
Before Width: | Height: | Size: 288 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 352 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 845 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 628 KiB |
Before Width: | Height: | Size: 510 KiB |
Before Width: | Height: | Size: 12 KiB |