Skip to content

Commit 7767232

Browse files
committed
Laravel 5.7 don't use or on views
1 parent a786597 commit 7767232

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/vuetify-stubs/resources/views/welcome.blade.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@
2929
<v-toolbar-title>{{ config('app.name') }}</v-toolbar-title>
3030
@if (Route::has('login') && ! Auth::check() )
3131
<v-spacer></v-spacer>
32-
<login-button action="{{ $action or null }}" ></login-button>
33-
<register-button action="{{ $action or null }}" ></register-button>
34-
<remember-password action="{{ $action or null }}"></remember-password>
32+
<login-button action="{{ $action ?? null }}" ></login-button>
33+
<register-button action="{{ $action ?? null }}" ></register-button>
34+
<remember-password action="{{ $action ?? null }}"></remember-password>
3535
<reset-password
36-
action="{{ $action or null }}"
37-
token="{{ $token or null }}"
38-
email="{{ $email or null }}"></reset-password>
36+
action="{{ $action ?? null }}"
37+
token="{{ $token ?? null }}"
38+
email="{{ $email ?? null }}"></reset-password>
3939
@endif
4040
</v-toolbar>
4141
<v-content>
@@ -220,4 +220,4 @@ class="blue lighten-2 mt-5"
220220
</div>
221221
<script src="{{ url (mix('/js/app.js')) }}" type="text/javascript"></script>
222222
</body>
223-
</html>
223+
</html>

0 commit comments

Comments
 (0)