Laravel 5 - Simple CRUD Application Using ReactJS - Part 3
In last part, we will create view blade file and run our react js crud application, we used axios for run apis. So let's follow rest of two step.
Step 8 : Create Main Blade File
in this step. In this step we have to create just one main blade. So mainly we have to create layout file. So finally you have to create following bellow blade file:
resources/views/welcome.blade.php
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel 5.5 ReactJS CRUD Example</title>
<link href="{{asset('css/app.css')}}" rel="stylesheet" type="text/css">
</head>
<body>
<div id="crud-app"></div>
<script src="{{asset('js/app.js')}}" ></script>
</body>
</html>
Step 9 : Run Project
Now in the last step, we have to just run our crud application so just run following command for react js compile:
npm run dev
Now we are ready to run our react js crud application example so run bellow command for quick run:
php artisan serve
Now you can open bellow URL on your browser:
http://localhost:8000/
You will see following layout of screen shot.
Listing Page:
Create Page:
Edit Page:
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel 5 - Simple CRUD Application Using ReactJS - Part 2
- Codeigniter 3 - Basic CRUD application with MySQL Example with Demo
- Laravel 5.5 CRUD Example from scratch
- Laravel AJAX CRUD Tutorial Example
- Laravel 5 and Vue JS CRUD with Pagination example and demo from scratch
- CRUD (Create Read Update Delete) Example in Laravel 5.2 from Scratch
- PHP AngularJS CRUD with Search and Pagination Tutorial
- Codeigniter 3 and AngularJS CRUD with Search and Pagination Example.