53 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Form\Resources;
 | 
						|
 | 
						|
use App\Form\Fields\Field;
 | 
						|
use App\Form\Models\Form;
 | 
						|
use App\Form\Models\Participant;
 | 
						|
use Illuminate\Http\Resources\Json\JsonResource;
 | 
						|
 | 
						|
/**
 | 
						|
 * @mixin Participant
 | 
						|
 */
 | 
						|
class ParticipantResource extends JsonResource
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Transform the resource into an array.
 | 
						|
     *
 | 
						|
     * @param  \Illuminate\Http\Request  $request
 | 
						|
     * @return array<string, mixed>
 | 
						|
     */
 | 
						|
    public function toArray($request)
 | 
						|
    {
 | 
						|
        $attributes = collect([]);
 | 
						|
 | 
						|
        foreach ($this->form->getFields() as $field) {
 | 
						|
            $attributes = $attributes->merge(Field::fromConfig($field)->presentValue($this->data[$field['key']]));
 | 
						|
        }
 | 
						|
 | 
						|
        return $attributes->toArray();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return array<string, mixed>
 | 
						|
     */
 | 
						|
    public static function meta(Form $form): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'form_meta' => $form->meta,
 | 
						|
            'links' => [
 | 
						|
                'update_form_meta' => route('form.update-meta', ['form' => $form]),
 | 
						|
            ],
 | 
						|
            'columns' => $form->getFields()
 | 
						|
                ->map(fn ($field) => Field::fromConfig($field))
 | 
						|
                ->map(fn ($field) => [
 | 
						|
                    'name' => $field->name,
 | 
						|
                    'base_type' => class_basename($field),
 | 
						|
                    'id' => $field->key,
 | 
						|
                    'display_attribute' => $field->getdisplayAttribute(),
 | 
						|
                ])
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |