parent
a5d87fdcf7
commit
55ee2f3c11
19 changed files with 179 additions and 42 deletions
@ -0,0 +1,38 @@ |
||||
<?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'); |
||||
} |
||||
}; |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 2.0 KiB |
@ -0,0 +1,25 @@ |
||||
|
||||
<style> |
||||
.main-column{ |
||||
display:flex; |
||||
width:100%; |
||||
} |
||||
.column-one{ |
||||
width:50%; |
||||
} |
||||
</style> |
||||
|
||||
<h1>Enquiry from Applicant </h1> |
||||
<br /> |
||||
<div class="main-column" style = "display:block; width:100%;"> |
||||
<div class="column-one" style = "display:block; width:100%;"> |
||||
<h3>Please, find out the applicant details</h3> |
||||
<b>Full Name:</b> {{ $full_name }}<br /><br /> |
||||
<b>Email:</b> {{ $email }}<br /><br /> |
||||
<b>Phone:</b> {{$phone}}<br /><br /> |
||||
<b>Passport Country:</b>{{$country}}<br/><br/> |
||||
<b>Work Pemrit in Australia:</b> {{ $work_permit == 1 ? 'Yes' : 'No' }}<br /><br /> |
||||
<b>TRA skill assessment:</b> {{ $tra_skill == 1 ? 'Yes' : 'No' }}<br /><br /> |
||||
</div> |
||||
</div> |
||||
|
Loading…
Reference in new issue