File tree Expand file tree Collapse file tree 4 files changed +18
-8
lines changed Expand file tree Collapse file tree 4 files changed +18
-8
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,14 @@ LOG_DEPRECATIONS_CHANNEL=null
20
20
LOG_LEVEL = debug
21
21
22
22
DB_CONNECTION = sqlite
23
+ # DB_CONNECTION=mysql
24
+ # DB_CONNECTION=mariadb
23
25
# DB_HOST=127.0.0.1
24
26
# DB_PORT=3306
25
27
# DB_DATABASE=laravel
26
28
# DB_USERNAME=root
27
29
# DB_PASSWORD=
30
+ # DB_COLLATION=utf8mb4_general_ci
28
31
29
32
SESSION_DRIVER = database
30
33
SESSION_LIFETIME = 120
Original file line number Diff line number Diff line change @@ -20,11 +20,14 @@ LOG_DEPRECATIONS_CHANNEL=null
20
20
LOG_LEVEL = debug
21
21
22
22
DB_CONNECTION = sqlite
23
+ # DB_CONNECTION=mysql
24
+ # DB_CONNECTION=mariadb
23
25
# DB_HOST=127.0.0.1
24
26
# DB_PORT=3306
25
27
# DB_DATABASE=laravel
26
28
# DB_USERNAME=root
27
29
# DB_PASSWORD=
30
+ # DB_COLLATION=utf8mb4_general_ci
28
31
29
32
SESSION_DRIVER = database
30
33
SESSION_LIFETIME = 120
@@ -46,13 +49,13 @@ REDIS_HOST=127.0.0.1
46
49
REDIS_PASSWORD = null
47
50
REDIS_PORT = 6379
48
51
49
- MAIL_MAILER = log
50
- MAIL_HOST = 127.0.0.1
51
- MAIL_PORT = 2525
52
- MAIL_USERNAME = null
53
- MAIL_PASSWORD = null
54
- MAIL_ENCRYPTION = null
55
- MAIL_FROM_ADDRESS = " hello@example .com"
52
+ MAIL_MAILER = smtp
53
+ MAIL_HOST = " smtp.gmail.com "
54
+ MAIL_PORT = 587
55
+ MAIL_ENCRYPTION = tls
56
+
57
+ MAIL_PASSWORD = " "
58
+ MAIL_FROM_ADDRESS = " email@gmail .com"
56
59
MAIL_FROM_NAME = " ${ APP_NAME } "
57
60
58
61
AWS_ACCESS_KEY_ID =
Original file line number Diff line number Diff line change @@ -161,6 +161,10 @@ iframe {
161
161
border-bottom : 2px solid var (--accent-primary );
162
162
}
163
163
164
+ .nav-router__logo-link {
165
+ float : left;
166
+ }
167
+
164
168
.nav-router__logo {
165
169
float : left;
166
170
height : 45px ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import ChangeTheme from '@/components/utils/ChangeTheme/ChangeTheme.vue'
6
6
7
7
<template >
8
8
<nav class =" nav-router" >
9
- <img src =" /logo/logo-light.png" alt =" Logo" title =" Logo" class =" nav-router__logo" >
9
+ <a href = " / " class = " nav-router__logo-link " >< img src =" /logo/logo-light.png" alt =" Logo" title =" Logo" class =" nav-router__logo" ></ a >
10
10
<RouterLink to =" /" class =" nav-router__link" :title =" $t('Home')" >{{ $t('Home') }}</RouterLink >
11
11
<RouterLink to =" /services" class =" nav-router__link" :title =" $t('Services')" >{{ $t('Services') }}</RouterLink >
12
12
<RouterLink to =" /about" class =" nav-router__link" :title =" $t('About')" >{{ $t('About') }}</RouterLink >
You can’t perform that action at this time.
0 commit comments