
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * lint fixes * missing empty lines * translations * fix vue version * #134 - fixes * fix * fix * #134 - fix * fix * fix * #134 - added tests * #134 - fix to translations * #134 - tests * #134 - fix * Update database/factories/ResumeFactory.php Co-authored-by: Krzysztof Rewak <krzysztof.rewak@gmail.com> * #134 - fix * #134 - fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl> Co-authored-by: Krzysztof Rewak <krzysztof.rewak@gmail.com>
22 lines
349 B
PHP
22 lines
349 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
"language_levels" => [
|
|
1 => "A1",
|
|
2 => "A2",
|
|
3 => "B1",
|
|
4 => "B2",
|
|
5 => "C1",
|
|
6 => "C2",
|
|
],
|
|
"technology_levels" => [
|
|
1 => "Beginner",
|
|
2 => "Junior",
|
|
3 => "Regular",
|
|
4 => "Advanced",
|
|
5 => "Expert",
|
|
],
|
|
];
|