Skip to content

Commit 88d0664

Browse files
committed
Merge remote-tracking branch 'origin/2.x' into 2.x
2 parents 90b1cf9 + bb913ac commit 88d0664

File tree

6 files changed

+5
-9
lines changed

6 files changed

+5
-9
lines changed

resources/views/mail/team-invitation.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
{{ __('If you do not have an account, you may create one by clicking the button below. After creating an account, you may click the invitation acceptance button in this email to accept the team invitation:') }}
55

66
@component('mail::button', ['url' => route('register')])
7-
Create Account
7+
{{ __('Create Account') }}
88
@endcomponent
99

1010
{{ __('If you already have an account, you may accept this invitation by clicking the button below:') }}
1111

1212
@component('mail::button', ['url' => $acceptUrl])
13-
Accept Invitation
13+
{{ __('Accept Invitation') }}
1414
@endcomponent
1515

1616
{{ __('If you did not expect to receive an invitation to this team, you may discard this email.') }}

stubs/inertia/resources/js/Pages/API/Index.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
<script>
2020
import ApiTokenManager from './ApiTokenManager'
2121
import AppLayout from '@/Layouts/AppLayout'
22-
import JetSectionBorder from '@/Jetstream/SectionBorder'
2322
2423
export default {
2524
props: [
@@ -31,7 +30,6 @@
3130
components: {
3231
ApiTokenManager,
3332
AppLayout,
34-
JetSectionBorder,
3533
},
3634
}
3735
</script>

stubs/inertia/resources/js/Pages/Teams/CreateTeamForm.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
</template>
3939

4040
<script>
41-
import JetActionMessage from '@/Jetstream/ActionMessage'
4241
import JetButton from '@/Jetstream/Button'
4342
import JetFormSection from '@/Jetstream/FormSection'
4443
import JetInput from '@/Jetstream/Input'
@@ -47,7 +46,6 @@
4746
4847
export default {
4948
components: {
50-
JetActionMessage,
5149
JetButton,
5250
JetFormSection,
5351
JetInput,

stubs/inertia/resources/js/Pages/Teams/DeleteTeamForm.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545

4646
<script>
4747
import JetActionSection from '@/Jetstream/ActionSection'
48-
import JetButton from '@/Jetstream/Button'
4948
import JetConfirmationModal from '@/Jetstream/ConfirmationModal'
5049
import JetDangerButton from '@/Jetstream/DangerButton'
5150
import JetSecondaryButton from '@/Jetstream/SecondaryButton'
@@ -55,7 +54,6 @@
5554
5655
components: {
5756
JetActionSection,
58-
JetButton,
5957
JetConfirmationModal,
6058
JetDangerButton,
6159
JetSecondaryButton,

stubs/inertia/resources/js/Pages/Welcome.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
</div>
104104

105105
<div class="ml-4 text-center text-sm text-gray-500 sm:text-right sm:ml-0">
106-
Build v{{ laravelVersion }}
106+
Laravel v{{ laravelVersion }} (PHP v{{ phpVersion }})
107107
</div>
108108
</div>
109109
</div>
@@ -180,6 +180,7 @@
180180
canLogin: Boolean,
181181
canRegister: Boolean,
182182
laravelVersion: String,
183+
phpVersion: String,
183184
}
184185
}
185186
</script>

stubs/inertia/routes/web.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
'canLogin' => Route::has('login'),
2121
'canRegister' => Route::has('register'),
2222
'laravelVersion' => Application::VERSION,
23+
'phpVersion' => PHP_VERSION,
2324
]);
2425
});
2526

0 commit comments

Comments
 (0)