Category: Vue

Vue

Laravel 8 with Vue 3

Prerequisite Laravel >=8 Laravel Mix >=6 Node version >=12.14 Creating Laravel Project: First Create a Laravel project using below command composer create-project laravel/laravel Laravel_Vue_Ex Creating Database: Create a new database in mysql with the name Laravel vue. Then Open ‘env’ file and change Database configuration DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=laravel_vue Table Creation: Now we will create […]

Back To Top