Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/skn-036/laravel-vue-ajax-product-page
- Owner: skn-036
- Created: 2021-04-17T09:23:40.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-01T22:34:48.000Z (almost 2 years ago)
- Last Synced: 2024-11-11T23:39:42.398Z (2 months ago)
- Topics: javascript, laracasts, laravel, laravel-framework, php, product-search, vue, vue-router, vuejs, vuex
- Language: JavaScript
- Homepage:
- Size: 2.24 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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