Share this:

Hello dev, Today we are going to learn Laravel 9 return json From Controller Examples. In this tutorial we will cover on how to return json from controller.

In this example, I will show you laravel 9 return json from controllers. you can understand a concept of laravel 9 return json data. I explained simply step by step laravel 9 response json array. this example will help you laravel 9 json response status code.

But if you are working on Core PHP then you have to do json_encode before send output. In laravel you can do it easily like this way:

Also Read: Laravel 9 Send Web Push Notification with Firebase Example

Example Laravel 9 return json From Controller Example:

public function getJsonData()
{
    $myArray = ['id'=>1, 'name'=>'john'];
    return response()->json($myArray);
}

Conclusion:

Today, We had learn Laravel 9 return json From Controller Example. Hope this tutorial helped you with learning Laravel 9. If you have any question you can ask us at comment section below. If you like the tutorial please subscribe our YouTube Channel and follow us on social network Facebook and Instagram.

Also Read: How to Use Inner Join In Laravel 9?

Share this:

Categorized in: