This is a dead simple to kickstart your Laravel Inertia with React. Powered with:
Blogpost: Simple Laravel Inertia React and Tailwindcss Starter Kit
Available two separate basic application structures which are:
- Landing Pages: Landing or your common end user web front applications.
https://yourapplication.com/*
- Backoffice: Your internal application for backoffice or admin panel.
https://yourapplication.com/backoffice/*
- Clone this repository
git clone git@github.com:didikz/laravel-inertia-react-starter.git
- Move to the project directory
- Create
.env
file:cp .env.example .env
- Install Laravel
composer install
- Setup app key
php artisan key:generate
- Install node dependencies
npm install
# running laravel
php artisan serve
# build local frontend
npm run dev
Visit http://localhost:8000
to see your runing project.