CRUD application using Laravel, Inertia.js, and React.
This application is a simple backend for Content Management System. The content managed by this application contains the following fields:
- Title
- Body
- Image
- Publish status
- Publish date
Clone the repo locally:
git clone https://github.com/w3shaman/laravel-inertia-react-crud.git
cd laravel-inertia-react-crudInstall PHP dependencies:
composer installInstall NPM dependencies:
npm installBuild assets:
npm run devSetup configuration:
cp .env.example .envGenerate application key:
php artisan key:generateMake public files accessible from the web:
php artisan storage:linkRun database migrations:
php artisan migrateRun artisan server:
php artisan serveRun the application in your browser.
