Sanmit Pawar
Sanmit Pawar

Reputation: 235

Disable Browser session in laravel jetstream

I am having laravel project version 8.23 with the jetstream

PFA image below

enter image description here

How to disable this part in the jetstream

Upvotes: 2

Views: 1406

Answers (2)

Andrew
Andrew

Reputation: 1823

If you're using the Inertiajs & Vuejs stack, you need to comment out/remove the following line in resources\js\Pages\Profile\Show.vue:

<logout-other-browser-sessions-form :sessions="sessions" class="mt-10 sm:mt-0" />

enter image description here

Or if you're wanting to just edit the contents of the component you can edit LogoutOtherBrowserSessions.vue located here:resources\js\Pages\Profile\LogoutOtherBrowserSessionsForm.vue.

Upvotes: 0

Sanmit Pawar
Sanmit Pawar

Reputation: 235

In resources -> views -> profile -> show.blade.php file

enter image description here

comment following section

enter image description here

Upvotes: 2

Related Questions