This repository implements Laravel and Vue.js to show, sort and search products of a ecommerce store with pagination.
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