2023-12-31 22:35:13 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Form\Resources;
|
|
|
|
|
2024-01-01 18:29:33 +01:00
|
|
|
use App\Form\Fields\Field;
|
2024-01-29 22:07:33 +01:00
|
|
|
use App\Form\FilterScope;
|
2023-12-31 22:35:13 +01:00
|
|
|
use App\Form\Models\Form;
|
2024-01-01 16:53:32 +01:00
|
|
|
use App\Form\Models\Formtemplate;
|
2024-01-01 18:29:33 +01:00
|
|
|
use App\Group;
|
2024-01-01 16:53:32 +01:00
|
|
|
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 [
|
2024-01-01 18:29:33 +01:00
|
|
|
'id' => $this->id,
|
2023-12-31 22:35:13 +01:00
|
|
|
'name' => $this->name,
|
2024-01-10 21:31:34 +01:00
|
|
|
'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'),
|
2023-12-31 22:35:13 +01:00
|
|
|
'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,
|
2024-01-01 18:29:33 +01:00
|
|
|
'links' => [
|
|
|
|
'update' => route('form.update', ['form' => $this->getModel()]),
|
|
|
|
'destroy' => route('form.destroy', ['form' => $this->getModel()]),
|
|
|
|
]
|
2023-12-31 22:35:13 +01:00
|
|
|
];
|
|
|
|
}
|
2024-01-01 16:53:32 +01:00
|
|
|
|
2024-01-10 21:31:34 +01:00
|
|
|
/**
|
|
|
|
* @return array<string, mixed>
|
|
|
|
*/
|
2024-01-01 16:53:32 +01:00
|
|
|
public static function meta(): array
|
|
|
|
{
|
|
|
|
return [
|
2024-01-01 18:29:33 +01:00
|
|
|
'base_url' => url(''),
|
|
|
|
'groups' => Group::forSelect(),
|
|
|
|
'fields' => Field::asMeta(),
|
2024-01-29 22:07:33 +01:00
|
|
|
'filter' => FilterScope::fromRequest(request()->input('filter', '')),
|
2024-01-01 16:53:32 +01:00
|
|
|
'links' => [
|
|
|
|
'store' => route('form.store'),
|
2024-01-01 18:29:33 +01:00
|
|
|
'formtemplate_index' => route('formtemplate.index'),
|
2024-01-01 16:53:32 +01:00
|
|
|
],
|
|
|
|
'templates' => FormtemplateResource::collection(Formtemplate::get()),
|
2024-01-01 18:29:33 +01:00
|
|
|
'default' => [
|
2024-02-02 01:05:45 +01:00
|
|
|
'description' => [],
|
2024-01-01 18:29:33 +01:00
|
|
|
'name' => '',
|
|
|
|
'excerpt' => '',
|
|
|
|
'from' => null,
|
|
|
|
'to' => null,
|
|
|
|
'registration_from' => null,
|
|
|
|
'registration_until' => null,
|
|
|
|
'mail_top' => null,
|
|
|
|
'mail_bottom' => null,
|
|
|
|
'config' => null,
|
2024-01-13 21:53:39 +01:00
|
|
|
'header_image' => null,
|
|
|
|
'id' => null,
|
2024-01-01 18:29:33 +01:00
|
|
|
],
|
|
|
|
'section_default' => [
|
|
|
|
'name' => '',
|
|
|
|
'intro' => '',
|
|
|
|
'fields' => [],
|
|
|
|
]
|
2024-01-01 16:53:32 +01:00
|
|
|
];
|
|
|
|
}
|
2023-12-31 22:35:13 +01:00
|
|
|
}
|