File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,19 @@ LOG_CHANNEL=stack
8
8
LOG_DEPRECATIONS_CHANNEL = null
9
9
LOG_LEVEL = debug
10
10
11
- DB_CONNECTION = mysql
11
+ # DB_CONNECTION=mysql
12
12
DB_HOST = 127.0.0.1
13
13
DB_PORT = 3306
14
14
DB_DATABASE = laravel
15
15
DB_USERNAME = root
16
16
DB_PASSWORD =
17
17
18
+ DB_CONNECTION = sqlsrv
19
+ MS_PASSWORD = Manuel@Passw0rd
20
+ MS_DATABASE = master
21
+ MS_USERNAME = sa
22
+ MS_HOST = mssql
23
+
18
24
BROADCAST_DRIVER = log
19
25
CACHE_DRIVER = file
20
26
FILESYSTEM_DISK = local
Original file line number Diff line number Diff line change 81
81
'sqlsrv ' => [
82
82
'driver ' => 'sqlsrv ' ,
83
83
'url ' => env ('DATABASE_URL ' ),
84
- 'host ' => env ('DB_HOST ' , 'localhost ' ),
85
- 'port ' => env ('DB_PORT ' , '1433 ' ),
86
- 'database ' => env ('DB_DATABASE ' , 'forge ' ),
87
- 'username ' => env ('DB_USERNAME ' , 'forge ' ),
88
- 'password ' => env ('DB_PASSWORD ' , '' ),
84
+ 'host ' => env ('MS_HOST ' , 'localhost ' ),
85
+ 'port ' => env ('MS_PORT ' , '1433 ' ),
86
+ 'database ' => env ('MS_DATABASE ' , 'forge ' ),
87
+ 'username ' => env ('MS_USERNAME ' , 'forge ' ),
88
+ 'password ' => env ('MS_PASSWORD ' , '' ),
89
89
'charset ' => 'utf8 ' ,
90
90
'prefix ' => '' ,
91
91
'prefix_indexes ' => true ,
You can’t perform that action at this time.
0 commit comments