Inertia Demo App

A demo application created using InertiaJs, which follows the Udemy Course

Installation

Clone the repo locally:

git clone https://github.com/saurabh85mahajan/inertia_demo_app.git
cd inertia_demo_app

Install PHP dependencies:

composer install

Install NPM dependencies:

npm ci

Build assets:

npm run dev

Setup configuration:

cp .env.example .env

Generate application key:

php artisan key:generate

Create Mysql Database and configure the values in .env file

Run database migrations:

php artisan migrate

Run database seeder:

php artisan db:seed

Start the dev server

php artisan serve

Open the Link in Browser. Register & you are all set!