Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/2.x' into 2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jan 6, 2021
2 parents 90b1cf9 + bb913ac commit 88d0664
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 9 deletions.
4 changes: 2 additions & 2 deletions resources/views/mail/team-invitation.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
{{ __('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:') }}

@component('mail::button', ['url' => route('register')])
Create Account
{{ __('Create Account') }}
@endcomponent

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

@component('mail::button', ['url' => $acceptUrl])
Accept Invitation
{{ __('Accept Invitation') }}
@endcomponent

{{ __('If you did not expect to receive an invitation to this team, you may discard this email.') }}
Expand Down
2 changes: 0 additions & 2 deletions stubs/inertia/resources/js/Pages/API/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
<script>
import ApiTokenManager from './ApiTokenManager'
import AppLayout from '@/Layouts/AppLayout'
import JetSectionBorder from '@/Jetstream/SectionBorder'
export default {
props: [
Expand All @@ -31,7 +30,6 @@
components: {
ApiTokenManager,
AppLayout,
JetSectionBorder,
},
}
</script>
2 changes: 0 additions & 2 deletions stubs/inertia/resources/js/Pages/Teams/CreateTeamForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
</template>

<script>
import JetActionMessage from '@/Jetstream/ActionMessage'
import JetButton from '@/Jetstream/Button'
import JetFormSection from '@/Jetstream/FormSection'
import JetInput from '@/Jetstream/Input'
Expand All @@ -47,7 +46,6 @@
export default {
components: {
JetActionMessage,
JetButton,
JetFormSection,
JetInput,
Expand Down
2 changes: 0 additions & 2 deletions stubs/inertia/resources/js/Pages/Teams/DeleteTeamForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@

<script>
import JetActionSection from '@/Jetstream/ActionSection'
import JetButton from '@/Jetstream/Button'
import JetConfirmationModal from '@/Jetstream/ConfirmationModal'
import JetDangerButton from '@/Jetstream/DangerButton'
import JetSecondaryButton from '@/Jetstream/SecondaryButton'
Expand All @@ -55,7 +54,6 @@
components: {
JetActionSection,
JetButton,
JetConfirmationModal,
JetDangerButton,
JetSecondaryButton,
Expand Down
3 changes: 2 additions & 1 deletion stubs/inertia/resources/js/Pages/Welcome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
</div>

<div class="ml-4 text-center text-sm text-gray-500 sm:text-right sm:ml-0">
Build v{{ laravelVersion }}
Laravel v{{ laravelVersion }} (PHP v{{ phpVersion }})
</div>
</div>
</div>
Expand Down Expand Up @@ -180,6 +180,7 @@
canLogin: Boolean,
canRegister: Boolean,
laravelVersion: String,
phpVersion: String,
}
}
</script>
1 change: 1 addition & 0 deletions stubs/inertia/routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
'canLogin' => Route::has('login'),
'canRegister' => Route::has('register'),
'laravelVersion' => Application::VERSION,
'phpVersion' => PHP_VERSION,
]);
});

Expand Down

0 comments on commit 88d0664

Please sign in to comment.