Answer the question
In order to leave comments, you need to log in
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')
];
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question