adrema/app/Form/Resources/FormResource.php

52 lines
1.4 KiB
PHP
Raw Normal View History

2023-12-31 22:35:13 +01:00
<?php
namespace App\Form\Resources;
use App\Form\Models\Form;
2024-01-01 16:53:32 +01:00
use App\Form\Models\Formtemplate;
use App\Lib\HasMeta;
2023-12-31 22:35:13 +01:00
use Illuminate\Http\Resources\Json\JsonResource;
/**
* @mixin Form
*/
class FormResource extends JsonResource
{
2024-01-01 16:53:32 +01:00
use HasMeta;
2023-12-31 22:35:13 +01:00
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
* @return array<string, mixed>
*/
public function toArray($request)
{
return [
'name' => $this->name,
'from_human' => $this->from?->format('d.m.Y'),
'to_human' => $this->to?->format('d.m.Y'),
'from' => $this->from?->format('Y-m-d'),
'to' => $this->to?->format('Y-m-d'),
'excerpt' => $this->excerpt,
'description' => $this->description,
'mail_top' => $this->mail_top,
'mail_bottom' => $this->mail_bottom,
'registration_from' => $this->registration_from?->format('Y-m-d H:i:s'),
'registration_until' => $this->registration_until?->format('Y-m-d H:i:s'),
2024-01-01 16:43:40 +01:00
'config' => $this->config,
2023-12-31 22:35:13 +01:00
];
}
2024-01-01 16:53:32 +01:00
public static function meta(): array
{
return [
'links' => [
'store' => route('form.store'),
],
'templates' => FormtemplateResource::collection(Formtemplate::get()),
];
}
2023-12-31 22:35:13 +01:00
}