A demo application to illustrate how Inertia.js works with Laravel and React.
This is a port of the original Ping CRM written in Laravel and Vue.
PHP 8.1 or higher
Node ^14.18.0 || >=16.0.0
Clone the repo locally:
git clone https://github.com/artemio87/pingcrm-react18-laravel10
cd pingcrm-react18-laravel10Install PHP dependencies:
composer installInstall NPM dependencies:
npm installOr
yarn installBuild assets:
npm run devOr
yarn devSetup configuration:
cp .env.example .envGenerate application key:
php artisan key:generateCreate an SQLite database. You can also use another database (MySQL, Postgres), simply update your configuration accordingly.
touch database/database.sqliteRun database migrations:
php artisan migrateRun database seeder:
php artisan db:seedRun artisan server:
php artisan serveYou're ready to go! Visit Ping CRM in your browser, and login with:
- Username: johndoe@example.com
- Password: secret
** you need to make sure APP_URL on .env is setted like:
APP_URL=http://127.0.0.1:8000
To run the Ping CRM tests, run:
phpunit
- Original work by Jonathan Reinink (@reinink) and contributors
- Port to Ruby on Rails by Georg Ledermann (@ledermann)
- Port to React by Lado Lomidze (@landish)
- Upgrade to laravel 10 + inertia 1.0 + React 18 Artemio Rodriguez (@artemio87)
