Inside this article we will see the concept i.e How to read json file in laravel 8. Article contains classified information. It will give the complete idea of json file reading in laravel 8.
This tutorial will be super easy to understand and it’s steps are easier to implement in your code as well. If you learn reading json file here, you can use the same concept in data seeding to database via json file. This is step by step tutorial in laravel 8 about json file reading.
Learn More –
- How To Work with Laravel 8 Model Events Tutorial
- How To Work with Session Timeout in Laravel 8
- How to Work with Telescope In Laravel 8 Tutorial
- Jetstream Login Register Email Verification in Laravel 8
Let’s get started.
Laravel Installation
We will create laravel project using composer. So, please make sure your system should have composer installed. If not, may be this article will help you to Install composer in system.
Here is the command to create a laravel project-
composer create-project --prefer-dist laravel/laravel blog
To start the development server of Laravel –
php artisan serve
URL: http://127.0.0.1:8000
Assuming laravel already installed inside your system.
JSON Data Preparation
Let’s consider a .json file in application. We have a students.json inside /storage folder.
{
"students":[
{
"name": "Sanjay Kumar",
"email": "sanjay@gmail.com"
},
{
"name": "Ashish Kumar",
"email": "ashish@gmail.com"
},
{
"name": "Dhananjay Negi",
"email": "dj@gmail.com"
},
{
"name": "Vijay Rohila",
"email": "vijay@gmail.com"
}
]
}
You can place this .json file either in /storage folder or /public folder. We will read only by specifying the path.
Create Controller
Open project into terminal and run this artisan command.
$ php artisan make:controller SiteController
It will create a file SiteController.php inside /app/Http/Controllers folder.
Assuming /storage folder.
Open SiteController.php and write this complete code into it.
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; class SiteController extends Controller { public function index() { $students = json_decode(file_get_contents(storage_path() . "/students.json"), true); echo "<pre>"; print_r($students); } }
Concept
$students = json_decode(file_get_contents(storage_path() . "/students.json"), true);
Here, we are parsing students.json file. storage_path() is a Laravel 8 helper function which returns the path upto /storage folder.
If you have taken /public folder then you should use public_path() in place of it. json_decode returns the data in object format. But putting true as second value it returns the data into array format.
Now, we can insert the .json file data into database etc.
Create Route
Open web.php from /routes folder. Add this route into it.
//... use App\Http\Controllers\SiteController; Route::get("data", [SiteController::class, "index"]); //...
Application Testing
Run this command into project terminal to start development server,
php artisan serve
URL: http://127.0.0.1:8000/data
We hope this article helped you to learn How To Read JSON File in Laravel 8 Tutorial in a very detailed way.
Online Web Tutor invites you to try Skillshike! Learn CakePHP, Laravel, CodeIgniter, Node Js, MySQL, Authentication, RESTful Web Services, etc into a depth level. Master the Coding Skills to Become an Expert in PHP Web Development. So, Search your favourite course and enroll now.
If you liked this article, then please subscribe to our YouTube Channel for PHP & it’s framework, WordPress, Node Js video tutorials. You can also find us on Twitter and Facebook.