* #120 - wip * #120 - add icon to home office * #120 - wip * #120 - wip * #120 - wip * #120 - wip * #120 - wip * #120 - ui fixes * #120 - fix * #120 - fix * #120 - fix * #120 - fix * #120 - translation fix * #120 - fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl>
This commit is contained in:
@@ -5,10 +5,19 @@ declare(strict_types=1);
|
||||
namespace Toby\Infrastructure\Http\Resources;
|
||||
|
||||
use Illuminate\Http\Resources\Json\JsonResource;
|
||||
use Toby\Domain\VacationTypeConfigRetriever;
|
||||
|
||||
class VacationRequestResource extends JsonResource
|
||||
{
|
||||
public static $wrap = null;
|
||||
protected VacationTypeConfigRetriever $configRetriever;
|
||||
|
||||
public function __construct($resource)
|
||||
{
|
||||
parent::__construct($resource);
|
||||
|
||||
$this->configRetriever = app(VacationTypeConfigRetriever::class);
|
||||
}
|
||||
|
||||
public function toArray($request): array
|
||||
{
|
||||
@@ -17,6 +26,7 @@ class VacationRequestResource extends JsonResource
|
||||
"name" => $this->name,
|
||||
"user" => new SimpleUserResource($this->user),
|
||||
"type" => $this->type,
|
||||
"isVacation" => $this->configRetriever->isVacation($this->type),
|
||||
"state" => $this->state,
|
||||
"from" => $this->from->toDisplayString(),
|
||||
"to" => $this->to->toDisplayString(),
|
||||
|
Reference in New Issue
Block a user