CRUD operations in VueJS with Laravel (just for practicing purpose)
By Hassan Raza
- Clone repository
git clone https://github.com/hassanrazadev/laravel-vue-crud.git
cd laravel-vue-crud
- Install composer dependencies
composer install
- Create .env file (copy
env.example
as.env
)
cp env.example .env
- Generate application key
php artisan key:generate
- Migrate & seed
php artisan migrate --seed
- Install npm dependencies
npm install
- That's it, serve the project
php artisan serve