* #40 - wip * #40 - generate pdf * #40 - fix * Update resources/js/Pages/VacationRequest/Show.vue Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> * #40 - fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl> Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>
This commit is contained in:
parent
067b343f24
commit
41c769d4ab
@ -22,6 +22,7 @@ use Toby\Domain\Enums\Role;
|
|||||||
* @property string $last_name
|
* @property string $last_name
|
||||||
* @property string $email
|
* @property string $email
|
||||||
* @property string $avatar
|
* @property string $avatar
|
||||||
|
* @property string $position
|
||||||
* @property Role $role
|
* @property Role $role
|
||||||
* @property EmploymentForm $employment_form
|
* @property EmploymentForm $employment_form
|
||||||
* @property Carbon $employment_date
|
* @property Carbon $employment_date
|
||||||
|
@ -23,7 +23,10 @@ use Toby\Domain\Enums\VacationType;
|
|||||||
* @property Carbon $to
|
* @property Carbon $to
|
||||||
* @property string $comment
|
* @property string $comment
|
||||||
* @property User $user
|
* @property User $user
|
||||||
|
* @property YearPeriod $yearPeriod
|
||||||
* @property Collection $activities
|
* @property Collection $activities
|
||||||
|
* @property Carbon $created_at
|
||||||
|
* @property Carbon $updated_at
|
||||||
*/
|
*/
|
||||||
class VacationRequest extends Model
|
class VacationRequest extends Model
|
||||||
{
|
{
|
||||||
@ -43,6 +46,11 @@ class VacationRequest extends Model
|
|||||||
return $this->belongsTo(User::class);
|
return $this->belongsTo(User::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function yearPeriod(): BelongsTo
|
||||||
|
{
|
||||||
|
return $this->belongsTo(YearPeriod::class);
|
||||||
|
}
|
||||||
|
|
||||||
public function activities(): HasMany
|
public function activities(): HasMany
|
||||||
{
|
{
|
||||||
return $this->hasMany(VacationRequestActivity::class);
|
return $this->hasMany(VacationRequestActivity::class);
|
||||||
|
@ -4,13 +4,16 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Toby\Infrastructure\Http\Controllers;
|
namespace Toby\Infrastructure\Http\Controllers;
|
||||||
|
|
||||||
|
use Barryvdh\DomPDF\Facade\Pdf;
|
||||||
use Illuminate\Http\RedirectResponse;
|
use Illuminate\Http\RedirectResponse;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Http\Response as LaravelResponse;
|
||||||
use Inertia\Response;
|
use Inertia\Response;
|
||||||
use Toby\Domain\Enums\VacationRequestState;
|
use Toby\Domain\Enums\VacationRequestState;
|
||||||
use Toby\Domain\Enums\VacationType;
|
use Toby\Domain\Enums\VacationType;
|
||||||
use Toby\Domain\VacationRequestStateManager;
|
use Toby\Domain\VacationRequestStateManager;
|
||||||
use Toby\Domain\Validation\VacationRequestValidator;
|
use Toby\Domain\Validation\VacationRequestValidator;
|
||||||
|
use Toby\Eloquent\Helpers\YearPeriodRetriever;
|
||||||
use Toby\Eloquent\Models\VacationRequest;
|
use Toby\Eloquent\Models\VacationRequest;
|
||||||
use Toby\Infrastructure\Http\Requests\VacationRequestRequest;
|
use Toby\Infrastructure\Http\Requests\VacationRequestRequest;
|
||||||
use Toby\Infrastructure\Http\Resources\VacationRequestActivityResource;
|
use Toby\Infrastructure\Http\Resources\VacationRequestActivityResource;
|
||||||
@ -18,10 +21,11 @@ use Toby\Infrastructure\Http\Resources\VacationRequestResource;
|
|||||||
|
|
||||||
class VacationRequestController extends Controller
|
class VacationRequestController extends Controller
|
||||||
{
|
{
|
||||||
public function index(Request $request): Response
|
public function index(Request $request, YearPeriodRetriever $yearPeriodRetriever): Response
|
||||||
{
|
{
|
||||||
$vacationRequests = $request->user()
|
$vacationRequests = $request->user()
|
||||||
->vacationRequests()
|
->vacationRequests()
|
||||||
|
->where("year_period_id", $yearPeriodRetriever->selected()->id)
|
||||||
->latest()
|
->latest()
|
||||||
->states(VacationRequestState::filterByStatus($request->query("status", "all")))
|
->states(VacationRequestState::filterByStatus($request->query("status", "all")))
|
||||||
->paginate();
|
->paginate();
|
||||||
@ -40,6 +44,15 @@ class VacationRequestController extends Controller
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function download(VacationRequest $vacationRequest): LaravelResponse
|
||||||
|
{
|
||||||
|
$pdf = PDF::loadView("pdf.vacation-request", [
|
||||||
|
"vacationRequest" => $vacationRequest,
|
||||||
|
]);
|
||||||
|
|
||||||
|
return $pdf->stream();
|
||||||
|
}
|
||||||
|
|
||||||
public function create(): Response
|
public function create(): Response
|
||||||
{
|
{
|
||||||
return inertia("VacationRequest/Create", [
|
return inertia("VacationRequest/Create", [
|
||||||
|
@ -19,6 +19,7 @@ class UserRequest extends FormRequest
|
|||||||
"lastName" => ["required", "min:3", "max:80"],
|
"lastName" => ["required", "min:3", "max:80"],
|
||||||
"email" => ["required", "email", Rule::unique("users", "email")->ignore($this->user)],
|
"email" => ["required", "email", Rule::unique("users", "email")->ignore($this->user)],
|
||||||
"role" => ["required", new Enum(Role::class)],
|
"role" => ["required", new Enum(Role::class)],
|
||||||
|
"position" => ["required"],
|
||||||
"employmentForm" => ["required", new Enum(EmploymentForm::class)],
|
"employmentForm" => ["required", new Enum(EmploymentForm::class)],
|
||||||
"employmentDate" => ["required", "date_format:Y-m-d"],
|
"employmentDate" => ["required", "date_format:Y-m-d"],
|
||||||
];
|
];
|
||||||
@ -30,6 +31,7 @@ class UserRequest extends FormRequest
|
|||||||
"first_name" => $this->get("firstName"),
|
"first_name" => $this->get("firstName"),
|
||||||
"last_name" => $this->get("lastName"),
|
"last_name" => $this->get("lastName"),
|
||||||
"email" => $this->get("email"),
|
"email" => $this->get("email"),
|
||||||
|
"position" => $this->get("position"),
|
||||||
"role" => $this->get("role"),
|
"role" => $this->get("role"),
|
||||||
"employment_form" => $this->get("employmentForm"),
|
"employment_form" => $this->get("employmentForm"),
|
||||||
"employment_date" => $this->get("employmentDate"),
|
"employment_date" => $this->get("employmentDate"),
|
||||||
|
@ -5,8 +5,10 @@ declare(strict_types=1);
|
|||||||
namespace Toby\Infrastructure\Http\Requests;
|
namespace Toby\Infrastructure\Http\Requests;
|
||||||
|
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
use Illuminate\Support\Carbon;
|
||||||
use Illuminate\Validation\Rules\Enum;
|
use Illuminate\Validation\Rules\Enum;
|
||||||
use Toby\Domain\Enums\VacationType;
|
use Toby\Domain\Enums\VacationType;
|
||||||
|
use Toby\Eloquent\Models\YearPeriod;
|
||||||
use Toby\Infrastructure\Http\Rules\YearPeriodExists;
|
use Toby\Infrastructure\Http\Rules\YearPeriodExists;
|
||||||
|
|
||||||
class VacationRequestRequest extends FormRequest
|
class VacationRequestRequest extends FormRequest
|
||||||
@ -23,10 +25,13 @@ class VacationRequestRequest extends FormRequest
|
|||||||
|
|
||||||
public function data(): array
|
public function data(): array
|
||||||
{
|
{
|
||||||
|
$from = $this->get("from");
|
||||||
|
|
||||||
return [
|
return [
|
||||||
"type" => $this->get("type"),
|
"type" => $this->get("type"),
|
||||||
"from" => $this->get("from"),
|
"from" => $from,
|
||||||
"to" => $this->get("to"),
|
"to" => $this->get("to"),
|
||||||
|
"year_period_id" => YearPeriod::findByYear(Carbon::create($from)->year)->id,
|
||||||
"comment" => $this->get("comment"),
|
"comment" => $this->get("comment"),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,7 @@ class UserFormDataResource extends JsonResource
|
|||||||
"lastName" => $this->last_name,
|
"lastName" => $this->last_name,
|
||||||
"email" => $this->email,
|
"email" => $this->email,
|
||||||
"role" => $this->role,
|
"role" => $this->role,
|
||||||
|
"position" => $this->position,
|
||||||
"employmentForm" => $this->employment_form,
|
"employmentForm" => $this->employment_form,
|
||||||
"employmentDate" => $this->employment_date->toDateString(),
|
"employmentDate" => $this->employment_date->toDateString(),
|
||||||
];
|
];
|
||||||
|
@ -17,6 +17,7 @@ class UserResource extends JsonResource
|
|||||||
"name" => $this->fullName,
|
"name" => $this->fullName,
|
||||||
"email" => $this->email,
|
"email" => $this->email,
|
||||||
"role" => $this->role->label(),
|
"role" => $this->role->label(),
|
||||||
|
"position" => $this->position,
|
||||||
"avatar" => asset($this->avatar),
|
"avatar" => asset($this->avatar),
|
||||||
"deleted" => $this->trashed(),
|
"deleted" => $this->trashed(),
|
||||||
"employmentForm" => $this->employment_form->label(),
|
"employmentForm" => $this->employment_form->label(),
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
"php": "^8.1",
|
"php": "^8.1",
|
||||||
"ext-pdo": "*",
|
"ext-pdo": "*",
|
||||||
"azuyalabs/yasumi": "^2.4",
|
"azuyalabs/yasumi": "^2.4",
|
||||||
|
"barryvdh/laravel-dompdf": "^1.0",
|
||||||
"fruitcake/laravel-cors": "^2.0",
|
"fruitcake/laravel-cors": "^2.0",
|
||||||
"guzzlehttp/guzzle": "^7.0.1",
|
"guzzlehttp/guzzle": "^7.0.1",
|
||||||
"inertiajs/inertia-laravel": "^0.5.1",
|
"inertiajs/inertia-laravel": "^0.5.1",
|
||||||
|
289
composer.lock
generated
289
composer.lock
generated
@ -4,7 +4,7 @@
|
|||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "bf5f7d8f40ecadea64ae8564a3df3110",
|
"content-hash": "c2f475e65f84bdff45169e4443d9ef4f",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "asm89/stack-cors",
|
"name": "asm89/stack-cors",
|
||||||
@ -135,6 +135,82 @@
|
|||||||
],
|
],
|
||||||
"time": "2022-01-30T07:43:17+00:00"
|
"time": "2022-01-30T07:43:17+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "barryvdh/laravel-dompdf",
|
||||||
|
"version": "v1.0.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/barryvdh/laravel-dompdf.git",
|
||||||
|
"reference": "e3f429e97087b2ef19b83e5ed313f080f2477685"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/e3f429e97087b2ef19b83e5ed313f080f2477685",
|
||||||
|
"reference": "e3f429e97087b2ef19b83e5ed313f080f2477685",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"dompdf/dompdf": "^1",
|
||||||
|
"illuminate/support": "^6|^7|^8|^9",
|
||||||
|
"php": "^7.2 || ^8.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"nunomaduro/larastan": "^1|^2",
|
||||||
|
"orchestra/testbench": "^4|^5|^6|^7",
|
||||||
|
"phpro/grumphp": "^1",
|
||||||
|
"squizlabs/php_codesniffer": "^3.5"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "1.0-dev"
|
||||||
|
},
|
||||||
|
"laravel": {
|
||||||
|
"providers": [
|
||||||
|
"Barryvdh\\DomPDF\\ServiceProvider"
|
||||||
|
],
|
||||||
|
"aliases": {
|
||||||
|
"PDF": "Barryvdh\\DomPDF\\Facade\\Pdf"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Barryvdh\\DomPDF\\": "src"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Barry vd. Heuvel",
|
||||||
|
"email": "barryvdh@gmail.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "A DOMPDF Wrapper for Laravel",
|
||||||
|
"keywords": [
|
||||||
|
"dompdf",
|
||||||
|
"laravel",
|
||||||
|
"pdf"
|
||||||
|
],
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/barryvdh/laravel-dompdf/issues",
|
||||||
|
"source": "https://github.com/barryvdh/laravel-dompdf/tree/v1.0.0"
|
||||||
|
},
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"url": "https://fruitcake.nl",
|
||||||
|
"type": "custom"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/barryvdh",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"time": "2022-01-29T08:02:59+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "brick/math",
|
"name": "brick/math",
|
||||||
"version": "0.9.3",
|
"version": "0.9.3",
|
||||||
@ -437,6 +513,73 @@
|
|||||||
],
|
],
|
||||||
"time": "2022-01-12T08:27:12+00:00"
|
"time": "2022-01-12T08:27:12+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "dompdf/dompdf",
|
||||||
|
"version": "v1.1.1",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/dompdf/dompdf.git",
|
||||||
|
"reference": "de4aad040737a89fae2129cdeb0f79c45513128d"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/dompdf/dompdf/zipball/de4aad040737a89fae2129cdeb0f79c45513128d",
|
||||||
|
"reference": "de4aad040737a89fae2129cdeb0f79c45513128d",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"ext-dom": "*",
|
||||||
|
"ext-mbstring": "*",
|
||||||
|
"phenx/php-font-lib": "^0.5.2",
|
||||||
|
"phenx/php-svg-lib": "^0.3.3",
|
||||||
|
"php": "^7.1 || ^8.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"mockery/mockery": "^1.3",
|
||||||
|
"phpunit/phpunit": "^7.5 || ^8 || ^9",
|
||||||
|
"squizlabs/php_codesniffer": "^3.5"
|
||||||
|
},
|
||||||
|
"suggest": {
|
||||||
|
"ext-gd": "Needed to process images",
|
||||||
|
"ext-gmagick": "Improves image processing performance",
|
||||||
|
"ext-imagick": "Improves image processing performance",
|
||||||
|
"ext-zlib": "Needed for pdf stream compression"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Dompdf\\": "src/"
|
||||||
|
},
|
||||||
|
"classmap": [
|
||||||
|
"lib/"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"LGPL-2.1"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Fabien Ménager",
|
||||||
|
"email": "fabien.menager@gmail.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Brian Sweeney",
|
||||||
|
"email": "eclecticgeek@gmail.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Gabriel Bull",
|
||||||
|
"email": "me@gabrielbull.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
|
||||||
|
"homepage": "https://github.com/dompdf/dompdf",
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/dompdf/dompdf/issues",
|
||||||
|
"source": "https://github.com/dompdf/dompdf/tree/v1.1.1"
|
||||||
|
},
|
||||||
|
"time": "2021-11-24T00:45:04+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "dragonmantank/cron-expression",
|
"name": "dragonmantank/cron-expression",
|
||||||
"version": "v3.3.1",
|
"version": "v3.3.1",
|
||||||
@ -2846,6 +2989,95 @@
|
|||||||
],
|
],
|
||||||
"time": "2021-07-19T03:43:32+00:00"
|
"time": "2021-07-19T03:43:32+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "phenx/php-font-lib",
|
||||||
|
"version": "0.5.4",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/dompdf/php-font-lib.git",
|
||||||
|
"reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
|
||||||
|
"reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"ext-mbstring": "*"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"symfony/phpunit-bridge": "^3 || ^4 || ^5"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"FontLib\\": "src/FontLib"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"LGPL-3.0"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Fabien Ménager",
|
||||||
|
"email": "fabien.menager@gmail.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "A library to read, parse, export and make subsets of different types of font files.",
|
||||||
|
"homepage": "https://github.com/PhenX/php-font-lib",
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/dompdf/php-font-lib/issues",
|
||||||
|
"source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
|
||||||
|
},
|
||||||
|
"time": "2021-12-17T19:44:54+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "phenx/php-svg-lib",
|
||||||
|
"version": "0.3.4",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/PhenX/php-svg-lib.git",
|
||||||
|
"reference": "f627771eb854aa7f45f80add0f23c6c4d67ea0f2"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/PhenX/php-svg-lib/zipball/f627771eb854aa7f45f80add0f23c6c4d67ea0f2",
|
||||||
|
"reference": "f627771eb854aa7f45f80add0f23c6c4d67ea0f2",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": "^7.4 || ^8.0",
|
||||||
|
"sabberworm/php-css-parser": "^8.3"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^9.5"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Svg\\": "src/Svg"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"LGPL-3.0"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Fabien Ménager",
|
||||||
|
"email": "fabien.menager@gmail.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "A library to read, parse and export to PDF SVG files.",
|
||||||
|
"homepage": "https://github.com/PhenX/php-svg-lib",
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/PhenX/php-svg-lib/issues",
|
||||||
|
"source": "https://github.com/PhenX/php-svg-lib/tree/0.3.4"
|
||||||
|
},
|
||||||
|
"time": "2021-10-18T02:13:32+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "phpoption/phpoption",
|
"name": "phpoption/phpoption",
|
||||||
"version": "1.8.1",
|
"version": "1.8.1",
|
||||||
@ -3572,6 +3804,59 @@
|
|||||||
],
|
],
|
||||||
"time": "2021-09-25T23:10:38+00:00"
|
"time": "2021-09-25T23:10:38+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "sabberworm/php-css-parser",
|
||||||
|
"version": "8.4.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
|
||||||
|
"reference": "e41d2140031d533348b2192a83f02d8dd8a71d30"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/e41d2140031d533348b2192a83f02d8dd8a71d30",
|
||||||
|
"reference": "e41d2140031d533348b2192a83f02d8dd8a71d30",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"ext-iconv": "*",
|
||||||
|
"php": ">=5.6.20"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"codacy/coverage": "^1.4",
|
||||||
|
"phpunit/phpunit": "^4.8.36"
|
||||||
|
},
|
||||||
|
"suggest": {
|
||||||
|
"ext-mbstring": "for parsing UTF-8 CSS"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Sabberworm\\CSS\\": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Raphael Schweikert"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Parser for CSS Files written in PHP",
|
||||||
|
"homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
|
||||||
|
"keywords": [
|
||||||
|
"css",
|
||||||
|
"parser",
|
||||||
|
"stylesheet"
|
||||||
|
],
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues",
|
||||||
|
"source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.4.0"
|
||||||
|
},
|
||||||
|
"time": "2021-12-11T13:40:54+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "swiftmailer/swiftmailer",
|
"name": "swiftmailer/swiftmailer",
|
||||||
"version": "v6.3.0",
|
"version": "v6.3.0",
|
||||||
@ -10027,5 +10312,5 @@
|
|||||||
"ext-pdo": "*"
|
"ext-pdo": "*"
|
||||||
},
|
},
|
||||||
"platform-dev": [],
|
"platform-dev": [],
|
||||||
"plugin-api-version": "2.1.0"
|
"plugin-api-version": "2.2.0"
|
||||||
}
|
}
|
||||||
|
@ -43,5 +43,6 @@ return [
|
|||||||
Toby\Architecture\Providers\RouteServiceProvider::class,
|
Toby\Architecture\Providers\RouteServiceProvider::class,
|
||||||
Toby\Architecture\Providers\TelescopeServiceProvider::class,
|
Toby\Architecture\Providers\TelescopeServiceProvider::class,
|
||||||
Toby\Architecture\Providers\ObserverServiceProvider::class,
|
Toby\Architecture\Providers\ObserverServiceProvider::class,
|
||||||
|
Barryvdh\DomPDF\ServiceProvider::class,
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
@ -22,6 +22,7 @@ class UserFactory extends Factory
|
|||||||
"last_name" => $this->faker->lastName(),
|
"last_name" => $this->faker->lastName(),
|
||||||
"email" => $this->faker->unique()->safeEmail(),
|
"email" => $this->faker->unique()->safeEmail(),
|
||||||
"employment_form" => $this->faker->randomElement(EmploymentForm::cases()),
|
"employment_form" => $this->faker->randomElement(EmploymentForm::cases()),
|
||||||
|
"position" => $this->faker->jobTitle(),
|
||||||
"role" => Role::EMPLOYEE,
|
"role" => Role::EMPLOYEE,
|
||||||
"employment_date" => Carbon::createFromInterface($this->faker->dateTimeBetween("2020-10-27"))->toDateString(),
|
"employment_date" => Carbon::createFromInterface($this->faker->dateTimeBetween("2020-10-27"))->toDateString(),
|
||||||
"remember_token" => Str::random(10),
|
"remember_token" => Str::random(10),
|
||||||
|
@ -4,11 +4,13 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Database\Factories;
|
namespace Database\Factories;
|
||||||
|
|
||||||
|
use Carbon\CarbonImmutable;
|
||||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||||
use Toby\Domain\Enums\VacationRequestState;
|
use Toby\Domain\Enums\VacationRequestState;
|
||||||
use Toby\Domain\Enums\VacationType;
|
use Toby\Domain\Enums\VacationType;
|
||||||
use Toby\Eloquent\Models\User;
|
use Toby\Eloquent\Models\User;
|
||||||
use Toby\Eloquent\Models\VacationRequest;
|
use Toby\Eloquent\Models\VacationRequest;
|
||||||
|
use Toby\Eloquent\Models\YearPeriod;
|
||||||
|
|
||||||
class VacationRequestFactory extends Factory
|
class VacationRequestFactory extends Factory
|
||||||
{
|
{
|
||||||
@ -16,17 +18,30 @@ class VacationRequestFactory extends Factory
|
|||||||
|
|
||||||
public function definition(): array
|
public function definition(): array
|
||||||
{
|
{
|
||||||
$number = $this->faker->numberBetween(1, 20);
|
$from = CarbonImmutable::create($this->faker->dateTimeThisYear);
|
||||||
$year = $this->faker->year;
|
$days = $this->faker->numberBetween(0, 20);
|
||||||
|
|
||||||
return [
|
return [
|
||||||
"user_id" => User::factory(),
|
"user_id" => User::factory(),
|
||||||
"name" => "{$number}/{$year}",
|
"year_period_id" => YearPeriod::factory(),
|
||||||
|
"name" => fn(array $attributes) => $this->generateName($attributes),
|
||||||
"type" => $this->faker->randomElement(VacationType::cases()),
|
"type" => $this->faker->randomElement(VacationType::cases()),
|
||||||
"state" => $this->faker->randomElement(VacationRequestState::cases()),
|
"state" => $this->faker->randomElement(VacationRequestState::cases()),
|
||||||
"from" => $this->faker->date,
|
"from" => $from,
|
||||||
"to" => $this->faker->date,
|
"to" => $from->addDays($days),
|
||||||
"comment" => $this->faker->boolean ? $this->faker->paragraph() : null,
|
"comment" => $this->faker->boolean ? $this->faker->paragraph() : null,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function generateName(array $attributes): string
|
||||||
|
{
|
||||||
|
$year = YearPeriod::find($attributes["year_period_id"])->year;
|
||||||
|
$user = User::find($attributes["user_id"]);
|
||||||
|
|
||||||
|
$number = $user->vacationRequests()
|
||||||
|
->whereYear("from", $year)
|
||||||
|
->count() + 1;
|
||||||
|
|
||||||
|
return "{$number}/{$year}";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,7 @@ return new class() extends Migration {
|
|||||||
$table->string("email")->unique();
|
$table->string("email")->unique();
|
||||||
$table->string("avatar")->nullable();
|
$table->string("avatar")->nullable();
|
||||||
$table->string("role")->default(Role::EMPLOYEE->value);
|
$table->string("role")->default(Role::EMPLOYEE->value);
|
||||||
|
$table->string("position");
|
||||||
$table->string("employment_form");
|
$table->string("employment_form");
|
||||||
$table->date("employment_date");
|
$table->date("employment_date");
|
||||||
$table->rememberToken();
|
$table->rememberToken();
|
||||||
|
@ -6,6 +6,7 @@ use Illuminate\Database\Migrations\Migration;
|
|||||||
use Illuminate\Database\Schema\Blueprint;
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
use Illuminate\Support\Facades\Schema;
|
use Illuminate\Support\Facades\Schema;
|
||||||
use Toby\Eloquent\Models\User;
|
use Toby\Eloquent\Models\User;
|
||||||
|
use Toby\Eloquent\Models\YearPeriod;
|
||||||
|
|
||||||
return new class() extends Migration {
|
return new class() extends Migration {
|
||||||
public function up(): void
|
public function up(): void
|
||||||
@ -14,6 +15,7 @@ return new class() extends Migration {
|
|||||||
$table->id();
|
$table->id();
|
||||||
$table->string("name");
|
$table->string("name");
|
||||||
$table->foreignIdFor(User::class)->constrained()->cascadeOnDelete();
|
$table->foreignIdFor(User::class)->constrained()->cascadeOnDelete();
|
||||||
|
$table->foreignIdFor(YearPeriod::class)->constrained()->cascadeOnDelete();
|
||||||
$table->string("type");
|
$table->string("type");
|
||||||
$table->string("state")->nullable();
|
$table->string("state")->nullable();
|
||||||
$table->date("from");
|
$table->date("from");
|
||||||
|
@ -31,7 +31,6 @@ class DatabaseSeeder extends Seeder
|
|||||||
User::factory([
|
User::factory([
|
||||||
"email" => env("LOCAL_EMAIL_FOR_LOGIN_VIA_GOOGLE"),
|
"email" => env("LOCAL_EMAIL_FOR_LOGIN_VIA_GOOGLE"),
|
||||||
])
|
])
|
||||||
->hasVacationRequests(5)
|
|
||||||
->create();
|
->create();
|
||||||
|
|
||||||
$users = User::all();
|
$users = User::all();
|
||||||
@ -70,6 +69,18 @@ class DatabaseSeeder extends Seeder
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
->create();
|
->create();
|
||||||
|
|
||||||
|
$yearPeriods = YearPeriod::all();
|
||||||
|
|
||||||
|
foreach ($users as $user) {
|
||||||
|
VacationRequest::factory()
|
||||||
|
->count(10)
|
||||||
|
->for($user)
|
||||||
|
->sequence(fn() => [
|
||||||
|
"year_period_id" => $yearPeriods->random()->id,
|
||||||
|
])
|
||||||
|
->create();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function generateAvatarsForUsers(Collection $users): void
|
protected function generateAvatarsForUsers(Collection $users): void
|
||||||
|
@ -82,6 +82,29 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="sm:grid sm:grid-cols-3 py-4 items-center">
|
||||||
|
<label
|
||||||
|
for="position"
|
||||||
|
class="block text-sm font-medium text-gray-700 sm:mt-px"
|
||||||
|
>
|
||||||
|
Stanowisko
|
||||||
|
</label>
|
||||||
|
<div class="mt-1 sm:mt-0 sm:col-span-2">
|
||||||
|
<input
|
||||||
|
id="position"
|
||||||
|
v-model="form.position"
|
||||||
|
type="text"
|
||||||
|
class="block w-full max-w-lg shadow-sm rounded-md sm:text-sm"
|
||||||
|
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors.position, 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors.position }"
|
||||||
|
>
|
||||||
|
<p
|
||||||
|
v-if="form.errors.position"
|
||||||
|
class="mt-2 text-sm text-red-600"
|
||||||
|
>
|
||||||
|
{{ form.errors.position }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<Listbox
|
<Listbox
|
||||||
v-model="form.role"
|
v-model="form.role"
|
||||||
as="div"
|
as="div"
|
||||||
@ -270,6 +293,7 @@ export default {
|
|||||||
email: null,
|
email: null,
|
||||||
employmentForm: props.employmentForms[0],
|
employmentForm: props.employmentForms[0],
|
||||||
role: props.roles[0],
|
role: props.roles[0],
|
||||||
|
position: null,
|
||||||
employmentDate: null,
|
employmentDate: null,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -82,6 +82,29 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="sm:grid sm:grid-cols-3 py-4 items-center">
|
||||||
|
<label
|
||||||
|
for="position"
|
||||||
|
class="block text-sm font-medium text-gray-700 sm:mt-px"
|
||||||
|
>
|
||||||
|
Stanowisko
|
||||||
|
</label>
|
||||||
|
<div class="mt-1 sm:mt-0 sm:col-span-2">
|
||||||
|
<input
|
||||||
|
id="position"
|
||||||
|
v-model="form.position"
|
||||||
|
type="text"
|
||||||
|
class="block w-full max-w-lg shadow-sm rounded-md sm:text-sm"
|
||||||
|
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors.position, 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors.position }"
|
||||||
|
>
|
||||||
|
<p
|
||||||
|
v-if="form.errors.position"
|
||||||
|
class="mt-2 text-sm text-red-600"
|
||||||
|
>
|
||||||
|
{{ form.errors.position }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<Listbox
|
<Listbox
|
||||||
v-model="form.role"
|
v-model="form.role"
|
||||||
as="div"
|
as="div"
|
||||||
@ -272,6 +295,7 @@ export default {
|
|||||||
lastName: props.user.lastName,
|
lastName: props.user.lastName,
|
||||||
email: props.user.email,
|
email: props.user.email,
|
||||||
role: props.roles.find(role => role.value === props.user.role),
|
role: props.roles.find(role => role.value === props.user.role),
|
||||||
|
position: props.user.position,
|
||||||
employmentForm: props.employmentForms.find(form => form.value === props.user.employmentForm),
|
employmentForm: props.employmentForms.find(form => form.value === props.user.employmentForm),
|
||||||
employmentDate: props.user.employmentDate,
|
employmentDate: props.user.employmentDate,
|
||||||
})
|
})
|
||||||
|
@ -49,6 +49,12 @@
|
|||||||
>
|
>
|
||||||
Rola
|
Rola
|
||||||
</th>
|
</th>
|
||||||
|
<th
|
||||||
|
scope="col"
|
||||||
|
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
||||||
|
>
|
||||||
|
Stanowisko
|
||||||
|
</th>
|
||||||
<th
|
<th
|
||||||
scope="col"
|
scope="col"
|
||||||
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
||||||
@ -97,6 +103,9 @@
|
|||||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||||
{{ user.role }}
|
{{ user.role }}
|
||||||
</td>
|
</td>
|
||||||
|
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||||
|
{{ user.position }}
|
||||||
|
</td>
|
||||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||||
{{ user.employmentForm }}
|
{{ user.employmentForm }}
|
||||||
</td>
|
</td>
|
||||||
|
@ -58,6 +58,30 @@
|
|||||||
{{ request.comment }}
|
{{ request.comment }}
|
||||||
</dd>
|
</dd>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
|
||||||
|
<dt class="text-sm font-medium text-gray-500">
|
||||||
|
Załączniki
|
||||||
|
</dt>
|
||||||
|
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">
|
||||||
|
<ul class="border border-gray-200 rounded-md divide-y divide-gray-200">
|
||||||
|
<li class="pl-3 pr-4 py-3 flex items-center justify-between text-sm">
|
||||||
|
<div class="w-0 flex-1 flex items-center">
|
||||||
|
<PaperClipIcon class="flex-shrink-0 h-5 w-5 text-gray-400" />
|
||||||
|
<span class="ml-2 flex-1 w-0 truncate"> wniosek_urlopowy.pdf </span>
|
||||||
|
</div>
|
||||||
|
<div class="ml-4 flex-shrink-0">
|
||||||
|
<a
|
||||||
|
:href="`/vacation-requests/${request.id}/download`"
|
||||||
|
target="_blank"
|
||||||
|
class="font-medium text-blumilk-600 hover:text-blumilk-500"
|
||||||
|
>
|
||||||
|
Pobierz
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -196,11 +220,13 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { ThumbUpIcon } from '@heroicons/vue/outline'
|
import { ThumbUpIcon } from '@heroicons/vue/outline'
|
||||||
|
import {PaperClipIcon} from '@heroicons/vue/solid'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'VacationRequestShow',
|
name: 'VacationRequestShow',
|
||||||
components: {
|
components: {
|
||||||
ThumbUpIcon,
|
ThumbUpIcon,
|
||||||
|
PaperClipIcon,
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
request: {
|
request: {
|
||||||
|
95
resources/views/pdf/vacation-request.blade.php
Normal file
95
resources/views/pdf/vacation-request.blade.php
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="pl">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<title>Wniosek urlopowy</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: DejaVu Sans, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
margin: 60px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helper-text {
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
padding-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
margin-top: 60px;
|
||||||
|
line-height: 24px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main {
|
||||||
|
margin-top: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.signatureTable {
|
||||||
|
margin-top: 100px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<table>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>{{ $vacationRequest->user->fullName }}</td>
|
||||||
|
<td>Legnica, {{ $vacationRequest->created_at->format("d.m.Y") }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="helper-text">imię i nazwisko</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>{{ $vacationRequest->user->position }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="helper-text">stanowisko</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="main">
|
||||||
|
<h2>Wniosek o urlop</h2>
|
||||||
|
<p class="content">
|
||||||
|
Proszę o {{ mb_strtolower($vacationRequest->type->label()) }} w okresie od dnia {{ $vacationRequest->from->format("d.m.Y") }}
|
||||||
|
do dnia {{ $vacationRequest->to->format("d.m.Y") }} włącznie tj. x dni roboczych za rok {{ $vacationRequest->yearPeriod->year }}.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<table class="signatureTable">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>........................</td>
|
||||||
|
<td>........................</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="helper-text">podpis przełożonego</td>
|
||||||
|
<td class="helper-text">podpis pracownika</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -33,6 +33,8 @@ Route::middleware("auth")->group(function (): void {
|
|||||||
->name("vacation.requests.store");
|
->name("vacation.requests.store");
|
||||||
Route::get("/vacation-requests/{vacationRequest}", [VacationRequestController::class, "show"])
|
Route::get("/vacation-requests/{vacationRequest}", [VacationRequestController::class, "show"])
|
||||||
->name("vacation.requests.show");
|
->name("vacation.requests.show");
|
||||||
|
Route::get("/vacation-requests/{vacationRequest}/download", [VacationRequestController::class, "download"])
|
||||||
|
->name("vacation.requests.download");
|
||||||
Route::post("/vacation-requests/{vacationRequest}/reject", [VacationRequestController::class, "reject"])
|
Route::post("/vacation-requests/{vacationRequest}/reject", [VacationRequestController::class, "reject"])
|
||||||
->name("vacation.requests.reject");
|
->name("vacation.requests.reject");
|
||||||
Route::post("/vacation-requests/{vacationRequest}/cancel", [VacationRequestController::class, "cancel"])
|
Route::post("/vacation-requests/{vacationRequest}/cancel", [VacationRequestController::class, "cancel"])
|
||||||
|
@ -89,6 +89,7 @@ class UserTest extends FeatureTestCase
|
|||||||
"firstName" => "John",
|
"firstName" => "John",
|
||||||
"lastName" => "Doe",
|
"lastName" => "Doe",
|
||||||
"role" => Role::EMPLOYEE->value,
|
"role" => Role::EMPLOYEE->value,
|
||||||
|
"position" => "Test position",
|
||||||
"email" => "john.doe@example.com",
|
"email" => "john.doe@example.com",
|
||||||
"employmentForm" => EmploymentForm::B2B_CONTRACT->value,
|
"employmentForm" => EmploymentForm::B2B_CONTRACT->value,
|
||||||
"employmentDate" => Carbon::now()->toDateString(),
|
"employmentDate" => Carbon::now()->toDateString(),
|
||||||
@ -99,6 +100,8 @@ class UserTest extends FeatureTestCase
|
|||||||
"first_name" => "John",
|
"first_name" => "John",
|
||||||
"last_name" => "Doe",
|
"last_name" => "Doe",
|
||||||
"email" => "john.doe@example.com",
|
"email" => "john.doe@example.com",
|
||||||
|
"role" => Role::EMPLOYEE->value,
|
||||||
|
"position" => "Test position",
|
||||||
"employment_form" => EmploymentForm::B2B_CONTRACT->value,
|
"employment_form" => EmploymentForm::B2B_CONTRACT->value,
|
||||||
"employment_date" => Carbon::now()->toDateString(),
|
"employment_date" => Carbon::now()->toDateString(),
|
||||||
]);
|
]);
|
||||||
@ -125,6 +128,7 @@ class UserTest extends FeatureTestCase
|
|||||||
"lastName" => "Doe",
|
"lastName" => "Doe",
|
||||||
"email" => "john.doe@example.com",
|
"email" => "john.doe@example.com",
|
||||||
"role" => Role::EMPLOYEE->value,
|
"role" => Role::EMPLOYEE->value,
|
||||||
|
"position" => "Test position",
|
||||||
"employmentForm" => EmploymentForm::B2B_CONTRACT->value,
|
"employmentForm" => EmploymentForm::B2B_CONTRACT->value,
|
||||||
"employmentDate" => Carbon::now()->toDateString(),
|
"employmentDate" => Carbon::now()->toDateString(),
|
||||||
])
|
])
|
||||||
@ -134,6 +138,8 @@ class UserTest extends FeatureTestCase
|
|||||||
"first_name" => "John",
|
"first_name" => "John",
|
||||||
"last_name" => "Doe",
|
"last_name" => "Doe",
|
||||||
"email" => "john.doe@example.com",
|
"email" => "john.doe@example.com",
|
||||||
|
"role" => Role::EMPLOYEE->value,
|
||||||
|
"position" => "Test position",
|
||||||
"employment_form" => EmploymentForm::B2B_CONTRACT->value,
|
"employment_form" => EmploymentForm::B2B_CONTRACT->value,
|
||||||
"employment_date" => Carbon::now()->toDateString(),
|
"employment_date" => Carbon::now()->toDateString(),
|
||||||
]);
|
]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user