Basic-Blog is a web application built on laravel framework with option to export orders in a PDF format.
Welcome to the Basic-Blog project! Follow these steps to set up the project on your local machine:
Clone the project repository from GitHub using the following command:
git clone https://github.com/henry-49/basic-blog.gitNavigate to the project directory and install PHP dependencies using Composer:
cd basic-blog
composer installMake a copy of the .env.example file and rename it to .env. Update the necessary environment variables such as database credentials, app URL, etc.
cp .env.example .envGenerate a new application key which is used for encryption, session management, etc.
php artisan key:generateRun the database migrations to create the required tables in the database:
php artisan migrateYou can serve the application using the built-in PHP development server:
php artisan serveBy default, the application will be accessible at http://localhost:8000.
Open your web browser and visit the URL where the application is served (http://localhost:8000 by default). You should see the ShoppingApp up and running.
Integrate PayPal and Stripe payment gateways into the project.