I
I
Ilya78rus2019-08-15 21:32:20
Laravel
Ilya78rus, 2019-08-15 21:32:20

How to simplify the formation of an object?

Using Eloquent, I get data from the database along with relationships
. It is necessary to simplify the data by removing unnecessary items.
In a loop, I go through the data and add the required parameters to a new object.
The required data can be in different relationships, for example, like this:

foreach ($log as $item) {
            $objects[] = [
                'first_name' => data_get($item, 'info.first_name'),
                'second_name' => data_get($item, 'info.second_name'),
                'user_name' => data_get($item, 'user.username'),
                'user_id' => data_get($item, 'user.id'),
                'media_cover' => data_get($item, 'media.img'),
                'media_slug' => data_get($item, 'media.slug'),
                'cover' => $this->getCdnImg(data_get($item, 'info.full_name'), true),
                'price' => data_get($item, 'info.price', 0),
                'type' => data_get($item, 'info.type')
            ];
}

How can this whole thing be simplified, this enumeration is used in 5 functions, it turns out some kind of porridge.
Maybe you can bring this case into a separate function, but then the question is how to understand where to get the data

Answer the question

In order to leave comments, you need to log in

1 answer(s)
G
George, 2019-08-15
@georgiokot

For example using the Resources API

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question