The backend of this blog website is built using Laravel, a powerful PHP framework that serves as the foundation for all server-side operations. In this project, Laravel is utilized to create a robust RESTful API that handles all aspects of blog management, including storing, editing, updating, and deleting blog posts in a MySQL database.
- RESTful API: Provides endpoints for CRUD operations (Create, Read, Update, Delete) for managing blog posts.
- Database Management: Utilizes MySQL for storing blog data, with Eloquent ORM for smooth and secure database interactions.
- Laravel = 11.20.0
- PHP = 8.2.12
- Composer Version = 2.7.7
- Clone the repository.
- Run composer install to install dependencies.
- Set up your database configuration in the .env file.
- Run php artisan migrate to create the necessary database tables.
- Customize the application as needed.
composer install
php artisan migrate
php artisan serve