Hello Devs,

In this tutorial, we will learn Laravel 5 - Simple CRUD Application Using ReactJS - Part 3

In this 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.

Follow this step by step guide below. 



Step 8 : Create Main 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

npm run dev



run below command for a peek

php artisan serve


Open below URL: 

http://localhost:8000/


May this example help you.