Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/skn-036/laravel-vue-ajax-product-page

This repository implements Laravel and Vue.js to show, sort and search products of a ecommerce store with pagination.
https://github.com/skn-036/laravel-vue-ajax-product-page

javascript laracasts laravel laravel-framework php product-search vue vue-router vuejs vuex

Last synced: 8 days ago
JSON representation

This repository implements Laravel and Vue.js to show, sort and search products of a ecommerce store with pagination.

Awesome Lists containing this project

README

        

## About This Repository

This repository implements Laravel and Vue.js to show, sort and search products of a ecommerce store with pagination.

## Installation

First download this repository. Navigate to root of the project and then


composer install
npm install

Fill up the database credentials(DB_DATABASE, DB_USERNAME, DB_PASSWORD) according to your database. At the root of your project run the following commands on terminal sequentially.


php artisan key:generate
php artisan migrate
php artisan db:seed

This will store all the default data into the database. Then compile the assets by


npm run dev

Finally initiate your server and enjoy !!!


php artisan serve