Laravel 8 Inertia JS CRUD With Jetstream [PDF]

  • 0 0 0
  • Suka dengan makalah ini dan mengunduhnya? Anda bisa menerbitkan file PDF Anda sendiri secara online secara gratis dalam beberapa menit saja! Sign Up
File loading please wait...
Citation preview

Laravel 8 Inertia JS CRUD with Jetstream & Tailwind CSS  By Hardik Savani |  September 28, 2020 |  Category : Laravel



In this tutorial, i will show you laravel 8 inertia js crud example. We will use laravel 8 inertia js crud with jetstream & tailwind css. you will learn laravel 8 inertia js crud with modal. i explained simply about laravel 8 jetstream inertia js vue js crud application example.



Laravel 8 jetstream designed by Tailwind CSS and they provide auth using inertia js and Inertia. i will show you how to create module with inertia.js vue js on default jetstream auth in laravel 8. Here, bellow i written step by step, so you can easily start simple post master with your existing step up of laravel 8 jetstream auth with tailwind css. you just need to follow few bellow step and you will get layout as like bellow: Preview:



List View:



Create View:



Update View:



Step 1: Install Laravel 8 here, we need to install laravel 8 application using composer command. composer create-project --prefer-dist laravel/laravel blog Step 2: Create Auth with Jetstream Inertia JS Now, in this step, we need to use composer command to install jetstream, so let's run bellow command and install bellow library. composer require laravel/jetstream now, we need to create authentication using bellow command. you can create basic login, register and email verification. if you want to create team management then you have to pass addition parameter. you can see bellow commands: php artisan jetstream:install inertia



OR



php artisan jetstream:install inertia --teams Now, let's node js package: npm install let's run package: npm run dev now, we need to run migration command to create database table: php artisan migrate Read Also:  Laravel 8 CRUD Application Tutorial for Beginners



Step 3: Create Migration and Model Here, we need create database migration for files table and also we will create model for files table. php artisan make:migration create_posts_table Migration: