/laravel-shop

Building a simple shop web application using laravel

Primary LanguagePHP

Laravel Tutorial

This is a small shop created using the Laravel framework for PHP. It allows you to create and edit a product an displays a listing of recent products on your dashboard.

You can learn more about the Laravel Framework here - https://laravel.com/

The walk through guide can be found here - https://wftutorials.wordpress.com/2019/01/30/laravel-tutorial/

Preview

https://wftutorials.files.wordpress.com/2019/01/laravel_screenshot_homepage.png

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as:

Laravel is accessible, yet powerful, providing tools needed for large, robust applications.

Installation

# download repo
git clone https://github.com/wyntonfranklin/laravel-shop.git

# Go into repo
cd laravel-shop

#Install dependencies
composer install
npm install # optional

#run the app
php artisan serve # alternatively you can use an web server like XAMPP

Features

  • Create a product
  • Edit a product
  • View a list of products
  • Login user
  • Create user
  • Add a product review

Topics Covered

  • Installing and setting up Laravel
  • Using the server
  • Using blade Templates
  • Using eloquent ORM
  • Creating Controllers, routes and models
  • Database migrations and version control
  • Using forms and posting data
  • User authentication