Skip to content
Advertisement

Why does Laravel API Resource data come this way?

I’m writing an API Resource. I think it’s about OOP. In the first code, the fullName field is empty, more precisely, only last_name comes. But in the second code it works exactly as I wanted it. What is the reason of this?

FİRST

JavaScript

SECOND

JavaScript

Advertisement

Answer

You have $this->firstname in the first one. It should be $this->first_name. So it should look like this:

'full_name' => $this->first_name . ' ' . $this->last_name,

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement