Questions tagged [jetstream]

Laravel Jetstream is an application starter kit for Laravel. Jetstream provides the following features for your application:

  • login
  • registration
  • email verification
  • two-factor authentication
  • session management
  • API via Laravel Sanctum

Documentation at jetstream.laravel.com.

480 questions
2
votes
1 answer

Have user register and accept invitation together on Laravel Jetstream

Currently on Laravel Jetstream, if a user doesn't exist, you are able to send an invitation for them to register and then accept the invite to your team. But the process to do this is the user clicks on Register in the email, and then has to go back…
Adam
  • 157
  • 1
  • 2
  • 12
2
votes
1 answer

How to register on Jetstream via Postman (API)

First step: I am posting data via Postman on the api/reg Second step: I am getting perfectly all the sent data Third step: nothing lol, I can't get to this 3rd step, what to do to send this data to database how Jetstream does? Somehow I found this…
Altro
  • 878
  • 1
  • 7
  • 23
2
votes
2 answers

Laravel jetstream inertia persistent layout

In a fresh laravel installation i'm trying to make layout persistent following the inertia doc https://inertiajs.com/pages app.js require('./bootstrap'); // Import modules... import { createApp, h } from 'vue'; import { App as InertiaApp, plugin as…
mchev
  • 713
  • 1
  • 8
  • 22
2
votes
1 answer

How to add bootstrap-vue module Laravel Jetstream with InertiaJS?

How can I work with bootstrap-vue on Laravel, using Laravel 8, Jetstream and InertiaJS? import Vue from 'vue' import { BootstrapVue, IconsPlugin } from 'bootstrap-vue' // Import Bootstrap an BootstrapVue CSS files (order is important) import…
2
votes
4 answers

Larave 8 jetstream domain/logout not working

When I try to http://domain.test/logout then showing "The GET method is not supported for this route. Supported methods: POST" But normal logout with post method working perfectly. How can I change the /logout route Post to get. in Jetstream,…
anower hasan
  • 51
  • 1
  • 6
2
votes
3 answers

Laravel 8 Jetstream how to redirect user to custom route after resetting password

I am using Laravel 8 jetstream for authentication. My question is, how can I redirect the user after resetting the password to the custom route? I don't want to redirect the user to the login page. I didn't find the route in all Fortify classes; I…
Mokhtar Ghaleb
  • 423
  • 13
  • 26
2
votes
1 answer

Laravel Jetstream (Livewire) not returning user through eloquent relationship

I'm trying to return the user name who submitted an article, but unable to access this via an eloquent relationship. Models/Thing public function users() { return $this->belongsTo(User::class); } with user_id stored in the things table However…
Mike Thrussell
  • 4,175
  • 8
  • 43
  • 59
2
votes
2 answers

Disable Browser session in laravel jetstream

I am having laravel project version 8.23 with the jetstream PFA image below How to disable this part in the jetstream
Sanmit Pawar
  • 211
  • 3
  • 10
2
votes
3 answers

Turbolink is not working in Livewire version 2

i am working on my new project and technology stack is: laravel 8 + Livewire V2 + Jetstream, to create a single page application (SPA). but I am still confused if its possible SPA in my selected technology stack or not. I know Livewire no longer…
Rajinder
  • 1,131
  • 1
  • 14
  • 29
2
votes
1 answer

Laravel One to Many relationship not working - returns recursion

I am developing an application with Laravel 8 and I ran into very strange behavior. I have a Model called "Organisation", this Organisation has many Users (Model from Jetstream). I did the relationship as usual: In Organisation Model: public…
Andreas
  • 83
  • 1
  • 1
  • 12
2
votes
1 answer

Laravel Jetstream - Is Sanctum required to protect the web routes?

We're using the latest version of Laravel with Laravel Jetstream and want to implement a functionality to allow our admins to sign in on behalf of a regular user. This allows us to provide a better support if some users encounter problems with their…
Matthias
  • 3,729
  • 22
  • 37
2
votes
3 answers

Laravel LiveWire Pagination issue

I am new to LiveWire and trying to build simple app with Laravel , jetstream and livewire My application get data from DB and show in Table with Pagination. every thing is working fine but issue is when i click on any page I got URI '?page=2' I dont…
Mr.SH
  • 397
  • 1
  • 9
  • 27
2
votes
1 answer

authenticating in laravel 8 with jetstream - username or email

I am searching for a solution to change the standard Jetstream Auth to Auth with username or email. This means during the registration of the account you enter email or username (username is always required). In the login form you can enter username…
Armin
  • 25
  • 1
  • 4
2
votes
1 answer

Stop user being logged out when updating the password

I am adding some implementation which allows a user to update there password within a admin panel given that they provide the correct current password. The issue I am facing is that the use upon updating the password is logged out because the…
user12789707
2
votes
1 answer

Laravel 8 auth Attempting and Failed events not firing as expected

I'm at a loss here... I'm using Laravel 8 with the jetstream inertia stack. I've setup event listeners in my EventServiceProvider to log various authentication events but the events don't seem to fire as expected. Login and Logout both work as…
bb89
  • 793
  • 2
  • 8
  • 23