Skip to content

Mini Laravel project for making sales in an online store.

Notifications You must be signed in to change notification settings

0bora0/Products

Repository files navigation

Mini PHP Application – Products

Purpose

This application demonstrates skills in PHP, MySQL, and Laravel through a small online store with products.


Running the Application

  1. Import the database:

    • Open phpMyAdmin or a MySQL client.
    • Import the rocket_store.sql file.
    • This will create the rocket_store database and the products table with example data.
  2. Set up Laravel:

    • Clone the project:
      git clone https://github.com/0bora0/Products.git
      cd Products
    • Install dependencies:
      composer install
    • Create the .env file:
      cp .env.example .env
    • Configure the database connection in .env:
      DB_CONNECTION=mysql
      DB_HOST=127.0.0.1
      DB_PORT=3306
      DB_DATABASE=rocket_store
      DB_USERNAME=root
      DB_PASSWORD=
      
  3. Start the local server:

    php artisan serve

About

Mini Laravel project for making sales in an online store.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages