Welcome to the Laravel React Blog Post
project! This is a simple blog application built with Laravel and React.js. It allows users to create, edit, and delete blog posts.
- Install dependencies:
composer install && npm install
-
Create a
.env
file based on.env.example
and configure your database settings. -
Generate an application key:
php artisan key:generate
- Run database migrations:
php artisan migrate
- Start the development server:
php artisan serve
npm run watch
To clone project from GitHub:
git clone https://github.com/pphatdev/blog-post.git && cd blog-post
composer install && npm install && cp .env.example .env && php artisan key:generate && php artisan migrate && npm run dev && php artisan serve
- Visit
http://localhost:8000
in your browser to access the application.
- Contributions are welcome! Please create a pull request or open an issue for any improvements or bug fixes.
This project is licensed under the MIT License.
- Laravel - The PHP framework used for the backend.
- React - The JavaScript library used for the frontend.
- Tailwind CSS - A utility-first CSS framework for styling.