S
S
Stanislav Pochepko2016-12-23 14:58:44
Laravel
Stanislav Pochepko, 2016-12-23 14:58:44

How to get data from callback function?

Good afternoon. I'm making a trait for the model, which will build a form for the model according to the passed field config.
That is, I make a config like this

public $fields = [
        0   => [
            'height'    => [
                'title_trans'   => 'users.fields.height',
                'type'          => 'text',
                'name'          => 'trainee[height]',
                'required'      => 1,
                'value'         => 'trainee.height',
            ],
            'weight'    => [
                'title_trans'   => 'users.fields.weight',
                'type'          => 'text',
                'name'          => 'trainee[weight]',
                'required'      => 1,
                'value'         => 'trainee.weight'
            ],
]

И потом вызываю метод на этой модели - и он мне строит форму.
По сути я почти всё сделал, но проблема в получении данных для select и radio элементов.
Как это можно реализовать?
Я думал сделать метод setDataFor($field, $data) и подготавливать модель в контроллере, но это глупо как по мне. Как это можно реализовать, подскажите?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
O
Oldy777, 2016-12-23
@Oldy777

Pass the name of the class to fetch the list

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question