Database Connection
Here are a few options for database connections. Although provided for demonstration purposes, using one of them is not required.
Note: Since the template is a Vue integration and all of the data is displayed using fake-db inside resources\ts
, we haven't provided any migrations with it.
MySQL
Copy file ".env.example", and change its name to ".env". Then in file ".env" complete this database configuration:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=
If you want to check php migration on database then connect database with your database name
open phpmyadmin
create new database which is "test" name (example here)
go to .env file and
change database configuration
DB_DATABASE=test // set as per your database name
DB_USERNAME=root // add your database username
DB_PASSWORD= // add your database password if you want
Last updated